resetFontSize static method

Future<void> resetFontSize()

resetFontSize

This method will reset the font size to the medium (default) size

Implementation

static Future<void> resetFontSize() async {
  Map<String, dynamic> arguments = <String, dynamic>{"size": 24};
  await _channel.invokeMethod("FONT_SIZE", arguments);
}