toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final asset = this.asset;
  final authentication = this.authentication;
  final connectorId = this.connectorId;
  final endpoint = this.endpoint;
  final network = this.network;
  return {
    'asset': ?asset,
    'authentication': ?authentication,
    'connectorId': ?connectorId,
    'endpoint': ?endpoint,
    'network': ?network,
  };
}