toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authorAttributions = this.authorAttributions;
final flagContentUri = this.flagContentUri;
final googleMapsUri = this.googleMapsUri;
final heightPx = this.heightPx;
final name = this.name;
final widthPx = this.widthPx;
return {
'authorAttributions': ?authorAttributions,
'flagContentUri': ?flagContentUri,
'googleMapsUri': ?googleMapsUri,
'heightPx': ?heightPx,
'name': ?name,
'widthPx': ?widthPx,
};
}