copyWith method

NullableReflectSubObject copyWith({
  1. String? value,
  2. bool resetValue = _F,
  3. int? anotherValue,
  4. bool resetAnotherValue = _F,
  5. int? deltaAnotherValue,
})

Implementation

NullableReflectSubObject copyWith({String? value,bool resetValue=_F,int? anotherValue,bool resetAnotherValue=_F,int? deltaAnotherValue,})=>NullableReflectSubObject(value: resetValue?"something":(value??_H.value),anotherValue: deltaAnotherValue!=null?(anotherValue??_H.anotherValue)+deltaAnotherValue:resetAnotherValue?42:(anotherValue??_H.anotherValue),);