updateDisplayName method

Future updateDisplayName(
  1. String displayName
)

Update the displayName of the Firebase User

Implementation

Future updateDisplayName(String displayName) async {
  await firebaseAuth.currentUser?.updateDisplayName(displayName);
}