ComicsCanvas constructor

const ComicsCanvas({
  1. Key? key,
  2. required ComicsViewModel viewModel,
  3. double width = 400,
  4. double height = 600,
})

Implementation

const ComicsCanvas({
  super.key,
  required this.viewModel,
  this.width = 400,
  this.height = 600,
});