toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expectedRttMs = this.expectedRttMs;
final l2ForwardingEnabled = this.l2ForwardingEnabled;
final locationPresence = this.locationPresence;
final region = this.region;
return {
'expectedRttMs': ?expectedRttMs,
'l2ForwardingEnabled': ?l2ForwardingEnabled,
'locationPresence': ?locationPresence,
'region': ?region,
};
}