setFont static method

Future<void> setFont(
  1. String font
)

Changes the font of Instabug's UI. font The asset path to the font file (e.g. "fonts/Poppins.ttf").

Implementation

static Future<void> setFont(String font) async {
  if (IBGBuildInfo.I.isIOS) {
    return _host.setFont(font);
  }
}