CounterPage constructor

const CounterPage({
  1. Key? key,
  2. required String title,
  3. bool enabled = true,
})

Implementation

const CounterPage({
  Key? key,
  required this.title,
  this.enabled = true,
}) : super(key: key);