toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributes = this.attributes;
  final consumer = this.consumer;
  final createTime = this.createTime;
  final description = this.description;
  final discoveryMode = this.discoveryMode;
  final errorDetail = this.errorDetail;
  final name = this.name;
  final state = this.state;
  final supplier = this.supplier;
  final updateTime = this.updateTime;
  return {
    'attributes': ?attributes,
    'consumer': ?consumer,
    'createTime': ?createTime,
    'description': ?description,
    'discoveryMode': ?discoveryMode,
    'errorDetail': ?errorDetail,
    'name': ?name,
    'state': ?state,
    'supplier': ?supplier,
    'updateTime': ?updateTime,
  };
}