onUserAttentionChanged property

  1. @override
Stream<bool> get onUserAttentionChanged
override

Implementation

@override
Stream<bool> get onUserAttentionChanged {
  return  eventChannel.receiveBroadcastStream().map((value){
    return value as bool;
  });
}