onAppLaunched property

Stream<AppRunningContext> onAppLaunched

A stream of events occurring when any application is launched.

Implementation

static Stream<AppRunningContext> get onAppLaunched => _launchEventChannel
    .receiveBroadcastStream()
    .map((dynamic map) => AppRunningContext.fromMap(map));