stdinSupportsAnsi property
- @Deprecated('Use NativePlatform.current!.stdinSupportsAnsi instead')
inherited
When stdin is connected to a terminal, whether ANSI codes are supported.
Warning
This property is deprecated on Platform.
It is only implemented by the legacy LocalPlatform and FakePlatform
classes, and cannot be accessed through Platform.current.
Use NativePlatform to access these properties instead, accessed as
NativePlatform.current.
Implementation
@Deprecated('Use NativePlatform.current!.stdinSupportsAnsi instead')
bool get stdinSupportsAnsi => throw UnimplementedError(
'Use NativePlatform.current!.stdinSupportsAnsi instead',
);