parse method

Metadata parse()

Implementation

Metadata parse() {
  final m = Metadata();
  m.title = title;
  m.description = description;
  m.image = image;
  m.url = url;
  return m;
}