onlySetIfAbsentDateUserProfile static method

Future<void> onlySetIfAbsentDateUserProfile(
  1. String key,
  2. DateTime value
)

Set a user profile of type DateTime only if absent.

Implementation

static Future<void> onlySetIfAbsentDateUserProfile(final String key, final DateTime value) async {
  await _invokeMethod('onlySetIfAbsentDateUserProfile', [key, value.millisecondsSinceEpoch]);
}