FlutterPage constructor

FlutterPage({
  1. required dynamic apiData,
  2. required Set<String?> actionList,
  3. required dynamic fun,
  4. required dynamic reference,
  5. required dynamic constructorArgs,
  6. Key? key,
  7. InitData? args,
})

Implementation

FlutterPage({
  required this.apiData,
  required this.actionList,
  required this.fun,
  required this.reference,
  required this.constructorArgs,
  Key? key,
  this.args,
}) : super(key: key);