TPage constructor

TPage({
  1. required int width,
  2. required int height,
})

Implementation

TPage({
  required int width,
  required int height,
}) {
  _width = width;
  _height = height;
}