setInitialValues method
- bool? isAutoInitEnabled,
override
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
@override
FirebaseMessagingPlatform setInitialValues({bool? isAutoInitEnabled}) {
return super.noSuchMethod(
Invocation.method(
#setInitialValues,
[],
{#isAutoInitEnabled: isAutoInitEnabled},
),
returnValue: TestFirebaseMessagingPlatform(),
returnValueForMissingStub: TestFirebaseMessagingPlatform(),
);
}