inActivButtonColor static method

Color inActivButtonColor()

Implementation

static Color inActivButtonColor() {
  var storedcolor = Storage.getValue(Constants.customColor);
  if (storedcolor == null) {
    return const Color(0xFFBDF3FC);
  } else {
    return Utils.hexToInt(Storage.getValue(Constants.customColor));
    // return Color(int.parse("0xFF${Storage.getValue(Constants.customColor)}"));
  }
}