toColorFromHex method

StaticMatrix<Color> toColorFromHex()

Implementation

StaticMatrix<Color> toColorFromHex() => StaticMatrix.fromList(
    data.map((e) => e.map((f) => Color.fromHEX(f)).toList()).toList());