getCachedIdentifier static method

  1. @Deprecated("Use getCurrentActiveProfile instead. This will be removed in a future release.")
Future<String?> getCachedIdentifier()

Implementation

@Deprecated(
    "Use getCurrentActiveProfile instead. This will be removed in a future release.")
static Future<String?> getCachedIdentifier() async {
  final String? identifier =
      await _channel.invokeMethod('getCachedIdentifier');
  return identifier;
}