setDoubleUserProfile static method

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

Set a user profile of type double.

Implementation

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