HEXColor constructor

HEXColor({
  1. String hex = 'ffffffff',
})

Implementation

HEXColor({this.hex = 'ffffffff'})
    : assert(!hex.startsWith('#')),
      assert(hex.length == 8);