update method

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

Implementation

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