UDrivingLicenceNegativePointParams.fromMap constructor

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

Implementation

factory UDrivingLicenceNegativePointParams.fromMap(Map<String, dynamic> json) => UDrivingLicenceNegativePointParams(
  nationalCode: json["nationalCode"],
  phoneNumber: json["phoneNumber"],
  drivingLicenceNumber: json["drivingLicenceNumber"],
  refresh: json["refresh"] ?? false,
);