delegateFor method
- FirebaseApp? app,
override
Enables delegates to create new instances of themselves if a none default FirebaseApp instance is required by the user.
Implementation
@override
FirebaseMessagingPlatform delegateFor({FirebaseApp? app}) {
return super.noSuchMethod(
Invocation.method(#delegateFor, [], {#app: app}),
returnValue: TestFirebaseMessagingPlatform(),
returnValueForMissingStub: TestFirebaseMessagingPlatform(),
);
}