CancelDeeplinkResponse.fromMap constructor

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

Implementation

factory CancelDeeplinkResponse.fromMap(Map<String, dynamic> json) => CancelDeeplinkResponse(
      responseMessage: json["response_message"] == null ? null : json["response_message"],
      responseCode: json["response_code"] == null ? null : json["response_code"],
      checksum: json["checksum"] == null ? null : json["checksum"],
    );