getCardBorder static method
Border?
getCardBorder(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Border? getCardBorder(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.cardBorder ??
style?.cardBorder ??
getStyleByType(UpConfig.of(context).theme, colorType).cardBorder;
}