CourierBrandResponse.fromJson constructor

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

Implementation

factory CourierBrandResponse.fromJson(Map<String, dynamic> json) {
  return CourierBrandResponse(
    data: CourierBrandData.fromJson(json['data']),
  );
}