isSupported static method

Future<bool> isSupported()

Implementation

static Future<bool> isSupported() async {
  final result = await analytics_interop.isSupported().toDart;
  return result! as bool;
}