toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectionError = this.connectionError;
final connectionName = this.connectionName;
final connectionState = this.connectionState;
return {
'connectionError': ?connectionError,
'connectionName': ?connectionName,
'connectionState': ?connectionState,
};
}