putFloat method

  1. @override
Future<String?> putFloat(
  1. String key,
  2. double value
)
override

Implementation

@override
Future<String?> putFloat(String key, double value) async {
  return Future.value(await callPlatform("putFloat", [key, value]));
}