borderBottom method
Implementation
DefineMAddButtonModifier borderBottom({Color? color, double? width}) {
final borderSide =
BorderSide(color: color ?? Colors.white, width: width ?? 1);
return this.copyWith(
valueBorder: Border(bottom: borderSide),
);
}