UAppSettingsResponse.fromMap constructor

UAppSettingsResponse.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UAppSettingsResponse.fromMap(Map<String, dynamic> json) => UAppSettingsResponse(
  apiCallCosts: UApiCallCosts.fromMap(json["apiCallCosts"] ?? <String, dynamic>{}),
  chargeInternet: json["chargeInternet"] == null ? <UChargeInternet>[] : List<UChargeInternet>.from(json["chargeInternet"]!.map((dynamic x) => UChargeInternet.fromMap(x))),
);