randomBox method

VxRandomBox randomBox({
  1. double? width,
  2. double? height,
  3. bool changeOnRedraw = true,
})

Implementation

VxRandomBox randomBox(
        {double? width, double? height, bool changeOnRedraw = true}) =>
    VxRandomBox(
      height: height,
      width: width,
      changeOnRedraw: changeOnRedraw,
      child: this,
    );