setShakeForm static method

Future<void> setShakeForm(
  1. ShakeForm? shakeForm
)

Sets shake form for the new ticket screen.

Implementation

static Future<void> setShakeForm(ShakeForm? shakeForm) async {
  var shakeFormMap = shakeForm?.toMap();
  await _channel.invokeMethod('setShakeForm', {
    'shakeForm': shakeFormMap,
  });
}