getBtnStyle method

ElementStyle? getBtnStyle(
  1. Btn btn
)

Implementation

ElementStyle? getBtnStyle(Btn btn) {
  if (_stylesData == null) {
    return null;
  }
  return _stylesData?.cssStyles![btn.btnClass!]?.value;
}