internalInstancePropertyMapList property

List<Map<String, VmValue>> internalInstancePropertyMapList

作为内部定义类型的实例来获取实例字段集合列表,包括超类与子类定义的全部字段

Implementation

List<Map<String, VmValue>> get internalInstancePropertyMapList {
  final target = _valueData;
  if (target is VmValue) {
    return target.internalInstancePropertyMapList;
  } else {
    return (target as VmSuper)._propertyMapList;
  }
}