createEmpty static method

BitMatrix createEmpty(
  1. int width,
  2. int height
)

Implementation

static BitMatrix createEmpty(int width, int height) {
  return BitMatrix(Uint8ClampedList(width * height), width);
}