borderButtonColor static method

Color borderButtonColor()

Implementation

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