AwsLambdaLayerVersionDetails.fromJson constructor
Implementation
factory AwsLambdaLayerVersionDetails.fromJson(Map<String, dynamic> json) {
return AwsLambdaLayerVersionDetails(
compatibleRuntimes: (json['CompatibleRuntimes'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
createdDate: json['CreatedDate'] as String?,
version: json['Version'] as int?,
);
}