getClientId static method

String getClientId()

Implementation

static String getClientId() {
  var id = DateTime.now().toIso8601String();
  if (kIsWeb) {
    return "web_$id";
  }
  return "${Platform.operatingSystem}_$id";
}