toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attachments = this.attachments;
final blockerType = this.blockerType;
final documentationLink = this.documentationLink;
final explanation = this.explanation;
final metros = this.metros;
final regions = this.regions;
final zones = this.zones;
return {
'attachments': ?attachments,
'blockerType': ?blockerType,
'documentationLink': ?documentationLink,
'explanation': ?explanation,
'metros': ?metros,
'regions': ?regions,
'zones': ?zones,
};
}