FFDataStructFieldUpdate constructor

FFDataStructFieldUpdate({
  1. bool? clearUnsetFields,
  2. FFVariable? variable,
  3. FFDataStructFieldUpdate_FieldUpdates? fieldUpdates,
  4. FFUpdateFieldValue? fieldValue,
})

Implementation

factory FFDataStructFieldUpdate({
  $core.bool? clearUnsetFields,
  FFVariable? variable,
  FFDataStructFieldUpdate_FieldUpdates? fieldUpdates,
  FFUpdateFieldValue? fieldValue,
}) {
  final result = create();
  if (clearUnsetFields != null) result.clearUnsetFields = clearUnsetFields;
  if (variable != null) result.variable = variable;
  if (fieldUpdates != null) result.fieldUpdates = fieldUpdates;
  if (fieldValue != null) result.fieldValue = fieldValue;
  return result;
}