Address constructor

Address({
  1. String? city,
  2. String? country,
  3. String? postalCode,
  4. String? state,
  5. String? street,
  6. Map<String, dynamic>? custom,
})

Implementation

Address(
    {this.city,
    this.country,
    this.postalCode,
    this.state,
    this.street,
    Map<String, dynamic>? custom})
    : super(custom: custom);