toJson method

Map<String, dynamic> toJson()

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,
  };
}