getFloat static method

Future<double?> getFloat(
  1. String key, {
  2. dynamic defaultValue = 0.0,
})

Implementation

static Future<double?> getFloat(String key, {defaultValue = 0.0}) {
  return FlutterAddtoappBridgePlatform.instance.getFloat(key, defaultValue: defaultValue);
}