toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final createTime = this.createTime;
  final name = this.name;
  final schema = this.schema;
  final spec = this.spec;
  final type = this.type;
  final updateTime = this.updateTime;
  return {
    'attributes': ?attributes,
    'createTime': ?createTime,
    'name': ?name,
    'schema': ?schema,
    'spec': ?spec,
    'type': ?type,
    'updateTime': ?updateTime,
  };
}