copyWith method

AddFieldBean copyWith({
  1. String? fieldId,
})

Implementation

AddFieldBean copyWith({String? fieldId}) {
  return AddFieldBean(
    fieldId: fieldId ?? this.fieldId,
  );
}