CreateCustomerTokenResponse.fromJson constructor

CreateCustomerTokenResponse.fromJson(
  1. dynamic json
)

Implementation

CreateCustomerTokenResponse.fromJson(dynamic json) {
  status = json['status'];
  message = json['message'];
  data = json['data'] != null ? Data.fromJson(json['data']) : null;
}