instance property

PlatformInterface get instance

Get the singleton instance

Implementation

static PlatformInterface get instance {
  _instance ??= NativeBridgeFactory.create();
  return _instance!;
}