borderAll method
Implementation
DefineMTextModifier borderAll({Color? color, double? width}) {
return this.copyWith(
valueBorder: Border.all(color: color ?? Colors.white, width: width ?? 1),
);
}
DefineMTextModifier borderAll({Color? color, double? width}) {
return this.copyWith(
valueBorder: Border.all(color: color ?? Colors.white, width: width ?? 1),
);
}