restore static method
Restores settings from from while preferring values in source.
Implementation
static String restore(
String source, {
required String from,
}) {
final restored = _merge(_decode(from), _decode(source));
return "${const JsonEncoder.withIndent(" ").convert(restored)}\n";
}