toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedValues = this.allowedValues;
  final cardinality = this.cardinality;
  final createTime = this.createTime;
  final dataType = this.dataType;
  final definitionType = this.definitionType;
  final description = this.description;
  final displayName = this.displayName;
  final mandatory = this.mandatory;
  final name = this.name;
  final scope = this.scope;
  final updateTime = this.updateTime;
  return {
    'allowedValues': ?allowedValues,
    'cardinality': ?cardinality,
    'createTime': ?createTime,
    'dataType': ?dataType,
    'definitionType': ?definitionType,
    'description': ?description,
    'displayName': ?displayName,
    'mandatory': ?mandatory,
    'name': ?name,
    'scope': ?scope,
    'updateTime': ?updateTime,
  };
}