copyWith method

Info copyWith({
  1. List<ManageProfile>? manageProfile,
})

Implementation

Info copyWith({  List<ManageProfile>? manageProfile,
}) => Info(  manageProfile: manageProfile ?? _manageProfile,
);