toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final availableOnRestrictedVip = this.availableOnRestrictedVip;
final knownLimitations = this.knownLimitations;
final name = this.name;
final serviceSupportStage = this.serviceSupportStage;
final supportStage = this.supportStage;
final supportedMethods = this.supportedMethods;
final title = this.title;
return {
'availableOnRestrictedVip': ?availableOnRestrictedVip,
'knownLimitations': ?knownLimitations,
'name': ?name,
'serviceSupportStage': ?serviceSupportStage,
'supportStage': ?supportStage,
'supportedMethods': ?supportedMethods,
'title': ?title,
};
}