baseClassDynamic property

VmClass baseClassDynamic
final

非Object子类型dynamic

Implementation

static final baseClassDynamic = VmClass<dynamic>(
  identifier: 'dynamic',
  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),
  },
);