size property

Size get size

Implementation

Size get size {
  return switch (this) {
    VButtonSize.SMALL => const Size(36, 36),
    VButtonSize.MEDIUM => const Size(46, 46),
    VButtonSize.LARGE => const Size(54, 54),
  };
}