toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authority = this.authority;
  final endpoint = this.endpoint;
  final payloadName = this.payloadName;
  final resendInterval = this.resendInterval;
  final retryDurationSec = this.retryDurationSec;
  return {
    'authority': ?authority,
    'endpoint': ?endpoint,
    'payloadName': ?payloadName,
    'resendInterval': ?resendInterval,
    'retryDurationSec': ?retryDurationSec,
  };
}