fontSize property

double get fontSize

Implementation

double get fontSize {
  return switch (this) {
    VButtonSize.SMALL => 14,
    VButtonSize.MEDIUM => 16,
    VButtonSize.LARGE => 18,
  };
}