removeUserDataDouble static method

Future<void> removeUserDataDouble(
  1. String key
)

Removes the double corresponding to a key set with setUserDataDouble.

Method might throw Exception.

Implementation

static Future<void> removeUserDataDouble(
  String key,
) async {
  try {
    await channel.invokeMethod<void>('removeUserDataDouble', key);
  } on PlatformException catch (e) {
    throw Exception(e.details);
  }
}