update method

Future<ResponseItemDTO> update({
  1. String? id,
  2. RoleGroupBody? roleGroup,
})

Implementation

Future<ResponseItemDTO> update({String? id, RoleGroupBody? roleGroup}) async {
  return await _repository!.update(
    id: id,
    roleGroup: roleGroup,
  );
}