AwsLambdaFunctionLayer.fromJson constructor

AwsLambdaFunctionLayer.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AwsLambdaFunctionLayer.fromJson(Map<String, dynamic> json) {
  return AwsLambdaFunctionLayer(
    arn: json['Arn'] as String?,
    codeSize: json['CodeSize'] as int?,
  );
}