getFloat method

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

Implementation

Future<double?> getFloat(String key, {defaultValue = 0.0}) {
  throw UnimplementedError('getFloat() has not been implemented.');
}