copyWith method
Implementation
ConfigEntity copyWith({
bool? isDebug,
bool? isLog,
String? host,
}) =>
ConfigEntity(
isDebug: isDebug ?? _isDebug,
isLog: isLog ?? _isLog,
host: host ?? _host,
);
ConfigEntity copyWith({
bool? isDebug,
bool? isLog,
String? host,
}) =>
ConfigEntity(
isDebug: isDebug ?? _isDebug,
isLog: isLog ?? _isLog,
host: host ?? _host,
);