toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (authority != null) 'authority': authority!,
      if (endpoint != null) 'endpoint': endpoint!,
      if (payloadName != null) 'payloadName': payloadName!,
      if (resendInterval != null) 'resendInterval': resendInterval!,
      if (retryDurationSec != null) 'retryDurationSec': retryDurationSec!,
    };