resolveBackgroundColor static method
Resolve background color for custom borders
Implementation
static Color? resolveBackgroundColor(
BuildContext context,
FlyStyle flyStyle,
) {
return flyStyle.bg != null
? FlyColorUtils.applyToContainer(
context,
flyStyle.copyWith(color: flyStyle.bg),
)
: null;
}