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