getDouble method

Future<double?> getDouble(
  1. String key
)

Reads a value from the platform, throwing a TypeError if the value is not a double.

Implementation

Future<double?> getDouble(String key) async {
  return _platform.getDouble(key, _options);
}