toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'code': ?code,
    'compatibleArchitectures': ?compatibleArchitectures,
    'compatibleRuntimes': ?compatibleRuntimes,
    'description': ?description,
    'layerName': layerName,
    'licenseInfo': ?licenseInfo,
    'region': ?region,
    's3Bucket': ?s3Bucket,
    's3Key': ?s3Key,
    's3ObjectVersion': ?s3ObjectVersion,
    'skipDestroy': ?skipDestroy,
    'sourceCodeHash': ?sourceCodeHash,
  };
}