create method
Implementation
Future<ResponseItemDTO> create({RoleBody? role}) async {
return await _repository!.create(
role: role,
);
}
Future<ResponseItemDTO> create({RoleBody? role}) async {
return await _repository!.create(
role: role,
);
}