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