ResendOtpResponse.fromJson constructor

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

Implementation

factory ResendOtpResponse.fromJson(Map<String, dynamic> json) => ResendOtpResponse(
    status: json["status"],
    message: json["message"],
    data: json["data"] == null ||json["data"] == ''? null : List<dynamic>.from(json["data"].map((x) => x)),
);