setInitialValues method

  1. @protected
FirebaseMessagingPlatform setInitialValues({
  1. bool? isAutoInitEnabled,
})

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
FirebaseMessagingPlatform setInitialValues({
  bool? isAutoInitEnabled,
}) {
  throw UnimplementedError('setInitialValues() is not implemented');
}