getBtnType method

Color getBtnType()

Get Fxbutton type (eg. solid,outline)

Implementation

Color getBtnType() {
  if (BtnType.outline == type ||
      BtnType.outline2x == type ||
      BtnType.transparent == type) return Colors.transparent;
  return FxColors.primary;
}