getButtonTextWeight static method
FontWeight
getButtonTextWeight(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static FontWeight getButtonTextWeight(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.buttonTextWeight ??
style?.buttonTextWeight ??
getStyleByType(UpConfig.of(context).theme, colorType)
.buttonTextWeight ??
FontWeight.normal;
}