setBold static method

Future<void> setBold(
  1. bool isBold
)

Set the font bold for future prints. isBold boolean.

Implementation

static Future<void> setBold(bool isBold) async {
  await _channel.invokeMethod("setBold", <String, dynamic>{
    'isBold': isBold,
  });
}