Account constructor

Account({
  1. String? accountURL,
  2. List<String>? contact,
  3. DateTime? createdAt,
  4. String? initialIp,
  5. String? status,
  6. bool? termsOfServiceAgreed,
  7. String? orders,
})

Implementation

Account(
    {this.accountURL,
    this.contact,
    this.createdAt,
    this.initialIp,
    this.status,
    this.termsOfServiceAgreed,
    this.orders});