vibrateWithAmplitude method
Vibrate with a specific amplitude for a given duration (Android only).
duration: The duration in milliseconds for which to vibrate.
amplitude: The strength of the vibration (1-255).
Implementation
Future<void> vibrateWithAmplitude({
required int duration,
required int amplitude,
}) {
throw UnimplementedError(
'vibrateWithAmplitude() has not been implemented.',
);
}