clashModeStream property
A stream of client Clash mode updates.
Implementation
@override
Stream<ClientClashMode> get clashModeStream {
_clashModeStream ??= _eventChannelClashMode.receiveBroadcastStream().map(
(data) => ClientClashMode.fromJson(jsonDecode(data)),
);
return _clashModeStream!;
}