showSupport static method

Future<void> showSupport({
  1. bool isAnimated = true,
})

Presents the support feature modally.

@param isAnimated A flag denoting whether the process is animated.

Implementation

static Future<void> showSupport({bool isAnimated = true}) {
  return DevRevSDKPlatform.instance.showSupport(isAnimated: isAnimated);
}