We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f6d5b commit b5c110fCopy full SHA for b5c110f
lib/chopper/color_converter.dart
@@ -30,6 +30,7 @@ class ColorConverter implements JsonConverter<Color, String> {
30
String toJson(Color color) {
31
// Next flutter release (>3.27) will contain a new method `toARGB32` to replace `.value`.
32
// Ignore this for now.
33
+ // ignore: deprecated_member_use
34
return '#${color.value.toRadixString(16).padLeft(8, '0')}';
35
}
36
0 commit comments