setUnderline static method

Future<void> setUnderline(
  1. bool enable
)

Sets the font to underline

Implementation

static Future<void> setUnderline(bool enable) async {
  final args = <String, dynamic>{"enable": enable};
  await _channel.invokeMethod(commandSetUnderline, args);
}