author property

AuthorAds get author

Generated

Implementation

AuthorAds get author {
  try {
    if (rawData["author"] is Map == false) {
      return AuthorAds({});
    }
    return AuthorAds(rawData["author"] as Map);
  } catch (e) {
    return AuthorAds({});
  }
}
set author (AuthorAds value)

Generated

Implementation

set author(AuthorAds value) {
  rawData["author"] = value.toJson();
}