copyWith method

  1. @override
UpdateConnectionState copyWith({
  1. ConnectionState? state,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateConnectionState copyWith({
  ConnectionState? state,
  dynamic extra,
  int? clientId,
}) => UpdateConnectionState(
  state: state ?? this.state,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);