CheckOrderCancellation.fromJson constructor

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

Implementation

CheckOrderCancellation.fromJson(Map<String, dynamic> json) {
  enableCancellation = json['enableCancellation'];
  message = json['message'];
  timePeriod = json['timePeriod'];
  hours = json['hours'];
  sTypename = json['__typename'];
}