playSound static method

Future<bool> playSound(
  1. dynamic soundId
)

Register with the Transistor Software demo server

Do not use.

Implementation

/// Do not use.
static Future<bool> playSound(dynamic soundId) async {
  return (await _methodChannel.invokeMethod<bool>('playSound', soundId))
      as FutureOr<bool>;
}