instance property

Getter for the singleton instance of the platform.

Implementation

static FlutterNativeLogsPlatform get instance => _instance;
void instance=(FlutterNativeLogsPlatform instance)

Implementation

static set instance(FlutterNativeLogsPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}