WCCustomerUpdatedResponse.fromJson constructor

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

Implementation

WCCustomerUpdatedResponse.fromJson(Map<String, dynamic> json) {
  if (json['data'] != null) {
    json['data'] = [];
  }
  message = json['message'];
  status = json['status'];
}