outsideBorderAll method

DefineMTileModifier outsideBorderAll({
  1. Color? color,
  2. double? width,
})

Implementation

DefineMTileModifier outsideBorderAll({Color? color, double? width}) {
  return this.copyWith(
    valueOutsideBorder:
        Border.all(color: color ?? Colors.white, width: width ?? 1),
  );
}