activButtonColor static method

Color activButtonColor()

Implementation

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