copyWith method
Implementation
ConnectData copyWith({
int? code,
String? msg,
String? type,
}) =>
ConnectData(
code: code ?? _code,
msg: msg ?? _msg,
type: type ?? _type,
);
ConnectData copyWith({
int? code,
String? msg,
String? type,
}) =>
ConnectData(
code: code ?? _code,
msg: msg ?? _msg,
type: type ?? _type,
);