Class LifecycleChannel
java.lang.Object
io.flutter.embedding.engine.systemchannels.LifecycleChannel
A 
BasicMessageChannel that communicates lifecycle events to the framework.
 The activity listens to the Android lifecycle events, in addition to the focus events for windows, and this channel combines that information to decide if the application is the inactive, resumed, paused, or detached state.
- 
Constructor SummaryConstructorsConstructorDescriptionLifecycleChannel(DartExecutor dartExecutor) LifecycleChannel(BasicMessageChannel<String> channel) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidvoidvoidvoidvoidvoid
- 
Constructor Details- 
LifecycleChannel
- 
LifecycleChannel
 
- 
- 
Method Details- 
aWindowIsFocusedpublic void aWindowIsFocused()
- 
noWindowsAreFocusedpublic void noWindowsAreFocused()
- 
appIsResumedpublic void appIsResumed()
- 
appIsInactivepublic void appIsInactive()
- 
appIsPausedpublic void appIsPaused()
- 
appIsDetachedpublic void appIsDetached()
 
-