toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "billing_address": billingAddress?.toJson(),
      "birth_date": birthDate,
      "cpf": cpf,
      "email": email,
      "first_name": firstName,
      "last_name": lastName,
      "phone": phone,
    };