ApiMapping.fromJson constructor
Implementation
factory ApiMapping.fromJson(Map<String, dynamic> json) {
return ApiMapping(
apiId: json['apiId'] as String,
stage: json['stage'] as String,
apiMappingId: json['apiMappingId'] as String?,
apiMappingKey: json['apiMappingKey'] as String?,
);
}