instance property

Getter để truy cập instance hiện tại (Singleton pattern).

Implementation

static BarcodeScannerPluginPlatform get instance => _instance;
set instance (BarcodeScannerPluginPlatform instance)

Setter cho phép ghi đè instance (dùng khi viết Mock/Test). Tự động xác thực token để ngăn gán instance không hợp lệ.

Implementation

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