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