CustomerInformationStatusResponse.fromJson constructor

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

Implementation

factory CustomerInformationStatusResponse.fromJson(
        Map<String, dynamic> json) =>
    new CustomerInformationStatusResponse(json['status'] as String,
        json['more_info_url'] as String, convertInt(json['eta']));