LambdaFunctionInfo.fromJson constructor
Implementation
factory LambdaFunctionInfo.fromJson(Map<String, dynamic> json) {
return LambdaFunctionInfo(
currentVersion: json['currentVersion'] as String?,
functionAlias: json['functionAlias'] as String?,
functionName: json['functionName'] as String?,
targetVersion: json['targetVersion'] as String?,
targetVersionWeight: json['targetVersionWeight'] as double?,
);
}