toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final blockchainType = this.blockchainType;
  final connectionInfo = this.connectionInfo;
  final createTime = this.createTime;
  final ethereumDetails = this.ethereumDetails;
  final labels = this.labels;
  final name = this.name;
  final privateServiceConnectEnabled = this.privateServiceConnectEnabled;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'blockchainType': ?blockchainType,
    'connectionInfo': ?connectionInfo,
    'createTime': ?createTime,
    'ethereumDetails': ?ethereumDetails,
    'labels': ?labels,
    'name': ?name,
    'privateServiceConnectEnabled': ?privateServiceConnectEnabled,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}