phoneEveStm property

Stream<int> phoneEveStm

Implementation

Stream<int> get phoneEveStm {
  return const EventChannel(ChannelNames.eventPhone)
      .receiveBroadcastStream()
      .map((dynamic event) {
    return event;
  });
}