TDmatrix constructor

TDmatrix({
  1. required int x,
  2. required int y,
  3. required int width,
  4. required int height,
  5. required String content,
})

Implementation

TDmatrix({
  required int x,
  required int y,
  required int width,
  required int height,
  required String content,
}) {
  _x = x;
  _y = y;
  _width = width;
  _height = height;
  _content = content;
}