parse method

OgpData parse()

Implementation

OgpData parse() {
  final OgpData o = OgpData();
  o.url = url;
  o.type = type;
  o.title = title;
  o.description = description;
  o.image = image;
  o.imageSecureUrl = imageSecureUrl;
  o.imageType = imageType;
  o.imageWidth = imageWidth;
  o.imageHeight = imageHeight;
  o.imageAlt = imageAlt;
  o.siteName = siteName;
  o.determiner = determiner;
  o.locale = locale;
  o.localeAlternate = localeAlternate;
  o.latitude = latitude;
  o.longitude = longitude;
  o.streetAddress = streetAddress;
  o.locality = locality;
  o.region = region;
  o.postalCode = postalCode;
  o.countryName = countryName;
  o.email = email;
  o.phoneNumber = phoneNumber;
  o.faxNumber = faxNumber;
  o.video = video;
  o.videoSecureUrl = videoSecureUrl;
  o.videoHeight = videoHeight;
  o.videoWidth = videoWidth;
  o.videoType = videoType;
  o.audio = audio;
  o.audioSecureUrl = audioSecureUrl;
  o.audioTitle = audioTitle;
  o.audioArtist = audioArtist;
  o.audioAlbum = audioAlbum;
  o.audioType = audioType;
  o.fbAdmins = fbAdmins;
  o.fbAppId = fbAppId;
  o.twitterCard = twitterCard;
  o.twitterSite = twitterSite;
  return o;
}