compileDefault method
Implementation
String compileDefault(Object? value) => switch (value) {
null => 'null',
bool b => boolLiteral(b),
num n => '$n',
String s => "'${s.replaceAll("'", "''")}'",
RawSql raw => raw.sql,
_ => throw ArgumentError.value(value, 'value', 'Unsupported default'),
};