BasePathMapping.fromJson constructor
Implementation
factory BasePathMapping.fromJson(Map<String, dynamic> json) {
return BasePathMapping(
basePath: json['basePath'] as String?,
restApiId: json['restApiId'] as String?,
stage: json['stage'] as String?,
);
}