hexToColor function

String hexToColor(
  1. String code
)

Implementation

String hexToColor(String code) {
  return code.replaceAll('#', '0xff');
}