updateProfile method

Future<void> updateProfile({
  1. String? displayName,
  2. String? photoUrl,
})

Implementation

Future<void> updateProfile({String? displayName, String? photoUrl}) =>
    _userGateway.updateProfile(displayName, photoUrl);