setBottomPadding method

Future<void> setBottomPadding(
  1. int padding
)

This method allows you to set a fixed bottom padding for in app messages and the launcher.

It is useful if your app has a tab bar or similar UI at the bottom of your window. padding is the size of the bottom padding in points.

Implementation

Future<void> setBottomPadding(int padding) {
  return IntercomFlutterPlatform.instance.setBottomPadding(padding);
}