toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedValuesRegex = this.allowedValuesRegex;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final name = this.name;
  final namespacedName = this.namespacedName;
  final parent = this.parent;
  final purpose = this.purpose;
  final purposeData = this.purposeData;
  final shortName = this.shortName;
  final updateTime = this.updateTime;
  return {
    'allowedValuesRegex': ?allowedValuesRegex,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'name': ?name,
    'namespacedName': ?namespacedName,
    'parent': ?parent,
    'purpose': ?purpose,
    'purposeData': ?purposeData,
    'shortName': ?shortName,
    'updateTime': ?updateTime,
  };
}