toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    '_address': _address?.toMap(),
    '_fullAddress': _fullAddress,
    'price_range': priceRange,
    'physical_products': physicalProducts,
    'business_type': businessDescription,
    'person_type': personType,
    'automatic_transfer': acceptAutomaticTransfer,
    'cnpj': cnpj,
    'company_name': companyName,
    'cpf': cpf,
    'name': name,
    'phone': phone,
    'resp_name': respName,
    'resp_cpf': respCPF,
    'bank': bank,
    'bank_ag': bankAgency,
    'account_type': accountType,
    'bank_cc': bankAccountNumber,
  };
}