setupToolbar static method

Future<void> setupToolbar(
  1. int width,
  2. int height
)

Implementation

static Future<void> setupToolbar(int width, int height) async {
  await _channel
      .invokeMethod('setupToolbar', {'width': width, 'height': height});
}