copyWith method

LeadRights copyWith({
  1. num? transfer,
  2. num? addFollowUp,
  3. num? edit,
})

Implementation

LeadRights copyWith({  num? transfer,
  num? addFollowUp,
  num? edit,
}) => LeadRights(  transfer: transfer ?? _transfer,
  addFollowUp: addFollowUp ?? _addFollowUp,
  edit: edit ?? _edit,
);