NetpbmHeader constructor
Creates a new Netpbm header with the given values.
Implementation
NetpbmHeader({
  required this.format,
  required this.width,
  required this.height,
  this.max,
  Iterable<String> comments = const [],
}) : comments = List.unmodifiable(comments);