baseClassNull property

VmClass<Null> baseClassNull
final

非Object子类型Null

Implementation

// ignore: prefer_void_to_null
static final baseClassNull = VmClass<Null>(
  identifier: 'Null',
  externalProxyMap: {
    'hashCode': VmProxy(identifier: 'hashCode', externalInstancePropertyReader: (instance) => instance.hashCode),
    'noSuchMethod': VmProxy(identifier: 'noSuchMethod', externalInstancePropertyReader: (instance) => instance.noSuchMethod),
    'runtimeType': VmProxy(identifier: 'runtimeType', externalInstancePropertyReader: (instance) => instance.runtimeType),
    'toString': VmProxy(identifier: 'toString', externalInstancePropertyReader: (instance) => instance.toString),
  },
);