update method
Implementation
Future<ResponseItemDTO> update({String? id, ThemeBody? theme}) async {
return await _repository!.update(
id: id,
theme: theme,
);
}
Future<ResponseItemDTO> update({String? id, ThemeBody? theme}) async {
return await _repository!.update(
id: id,
theme: theme,
);
}