copyWith method

Contact copyWith({
  1. bool? manageMasterAdmin,
  2. bool? activation,
  3. num? adminModuleId,
})

Implementation

Contact copyWith({  bool? manageMasterAdmin,
  bool? activation,
  num? adminModuleId,
}) => Contact(  manageMasterAdmin: manageMasterAdmin ?? _manageMasterAdmin,
  activation: activation ?? _activation,
  adminModuleId: adminModuleId ?? _adminModuleId,
);