update abstract method

Future<void> update(
  1. String emailAddress,
  2. String givenName,
  3. String familyName,
  4. String imageUrl,
  5. LocalDate dateOfBirth,
)

Update the user's profile. Not all properties in the ProfileModel can be updated, so this method accepts only parameters that can be updated.

Implementation

Future<void> update(String emailAddress, String givenName, String familyName, String imageUrl, LocalDate dateOfBirth);