ExcelColor.fromInt constructor

ExcelColor.fromInt(
  1. int colorIntValue
)

Warning! Highly unsafe method. Can break your excel file if you do not know what you are doing

Implementation

factory ExcelColor.fromInt(int colorIntValue) =>
    ExcelColor._(_decimalToHexadecimal(colorIntValue));