onlySetIfAbsentIntUserProfile static method

Future<void> onlySetIfAbsentIntUserProfile(
  1. String key,
  2. int value
)

Set a user profile of type int only if absent.

Implementation

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