copyWith method

ConfigEntity copyWith({
  1. bool? isDebug,
  2. bool? isLog,
  3. String? host,
})

Implementation

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