ThreeDSStatusData.fromJson constructor

ThreeDSStatusData.fromJson(
  1. dynamic json
)

Implementation

ThreeDSStatusData.fromJson(dynamic json) {
  isLoading = json['is_loading'];
  updateDatetime = json['update_datetime'];
  isPay = json['is_pay'];
  isAuthenticate = json['is_authenticate'];
  isAuthenticateStart = json['is_authenticate_start'];
}