CustomerInfo.fromJson constructor
Implementation
factory CustomerInfo.fromJson(Map<String, dynamic> json) {
return CustomerInfo(
id: json['id'] as String,
customerId: json['customerId'] as String,
email: json['email'] as String?,
name: json['name'] as String?,
);
}