UpcomingCustomerDetailsTax.fromJson constructor
UpcomingCustomerDetailsTax.fromJson(
- Object? json
Implementation
factory UpcomingCustomerDetailsTax.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return UpcomingCustomerDetailsTax(
ipAddress:
map['ip_address'] == null ? null : (map['ip_address'] as String));
}