gradientBorder method
Implementation
DefineMAddButtonModifier gradientBorder({
Gradient? value,
double width = 1.0,
}) {
return this.copyWith(
valueGradientBorder:
value ?? LinearGradient(colors: [Colors.red, Colors.blue]),
valueWidth: width,
);
}