String? toColorString(Color? color) { return color != null ? '#${color.value.toRadixString(16)}' : null; }