GetBaseResponse.fromJson constructor

GetBaseResponse.fromJson(
  1. dynamic json
)

Implementation

factory GetBaseResponse.fromJson(json) => GetBaseResponse(
      status: json["status"],
      code: json["code"],
      total: json["total"],
      message: json["message"],
      data: json["data"],
      raw: json,
    );