setInitialValues method

  1. @protected
FirebaseAuthPlatform setInitialValues({
  1. PigeonUserDetails? currentUser,
  2. String? languageCode,
})

Sets any initial values on the instance.

Platforms with Method Channels can provide constant values to be available before the instance has initialized to prevent any unnecessary async calls.

Implementation

@protected
FirebaseAuthPlatform setInitialValues({
  PigeonUserDetails? currentUser,
  String? languageCode,
}) {
  throw UnimplementedError('setInitialValues() is not implemented');
}