toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final languageCode = this.languageCode;
  final supportSource = this.supportSource;
  final supportTarget = this.supportTarget;
  return {
    'displayName': ?displayName,
    'languageCode': ?languageCode,
    'supportSource': ?supportSource,
    'supportTarget': ?supportTarget,
  };
}