instance property
GraphViewExporterPlatform
get
instance
The default instance of GraphViewExporterPlatform to use.
Defaults to MethodChannelGraphViewExporter.
Implementation
static GraphViewExporterPlatform get instance => _instance;
set
instance
(GraphViewExporterPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends GraphViewExporterPlatform when they register themselves.
Implementation
static set instance(GraphViewExporterPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}