onlySetIfAbsentDoubleUserProfile static method

Future<void> onlySetIfAbsentDoubleUserProfile(
  1. String key,
  2. double value
)

Set a user profile of type double only if absent.

Implementation

static Future<void> onlySetIfAbsentDoubleUserProfile(final String key, final double value) async {
  await _invokeMethod('onlySetIfAbsentDoubleUserProfile', [key, value]);
}