BasePathMapping.fromJson constructor

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

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?,
  );
}