PagePath constructor

const PagePath({
  1. String? key,
  2. String? factoryKey,
  3. Map<String, dynamic> state = const {},
})

Implementation

const PagePath({
  this.key,
  String? factoryKey,
  this.state = const {},
}) : _factoryKey = factoryKey;