borderWidth method

DefineMTileModifier borderWidth(
  1. double value
)

Implementation

DefineMTileModifier borderWidth(double value) {
  return this.copyWith(
      valueBorder: Border.all(
          color: this.valueBorder?.left.color ?? Colors.white, width: value));
}