dispose method

void dispose()

Implementation

void dispose() {
  for (final c in [
    title,
    subtitle,
    description,
    author,
    category,
    tags,
    image,
  ]) {
    c.dispose();
  }
}