copyWith method
Implementation
AppConfigState copyWith({
bool? enabled,
Map<String, dynamic>? config,
}) {
return AppConfigState(
$enabled: enabled ?? $enabled,
$config: config ?? $config,
);
}
AppConfigState copyWith({
bool? enabled,
Map<String, dynamic>? config,
}) {
return AppConfigState(
$enabled: enabled ?? $enabled,
$config: config ?? $config,
);
}