VmHelper constructor

VmHelper({
  1. String? fieldType,
  2. String? fieldQuestion,
  3. String? fieldName,
  4. dynamic fieldValue,
  5. bool isNamedField = false,
  6. bool isClassField = false,
  7. bool isSuperField = false,
})

Implementation

VmHelper({
  this.fieldType,
  this.fieldQuestion,
  String? fieldName,
  dynamic fieldValue,
  this.isNamedField = false,
  this.isClassField = false,
  this.isSuperField = false,
})  : fieldName = fieldName ?? '___anonymousVmField___',
      fieldValue = VmObject.readLogic(fieldValue),
      super(identifier: '___anonymousVmHelper___');