What is the best way to store colors in the flutter application? currently, it looks like this: (is that a good way?)
I would like to know the best way
Example of colors:
import 'package:flutter/material.dart';
const Color orange = Color(0xFFFF6C00);
const Color purple1 = Color(0xFF7B1FA2);
Example of icons:
import 'package:flutter/material.dart';
const IconData checkIcon = Icons.check;
const IconData maleIcon = Icons.male;
const IconData femaleIcon = Icons.female;