diff --git a/lib/flow_builder.dart b/lib/flow_builder.dart index 8a47f27..6f19022 100644 --- a/lib/flow_builder.dart +++ b/lib/flow_builder.dart @@ -7,7 +7,7 @@ import 'package:flutter/widgets.dart'; /// Signature for function which generates a [List] given an input of [T] /// and the current [List]. -typedef OnGeneratePages = List Function(T, List); +typedef OnGeneratePages = List Function(T state, List pages); /// Signature for function which given an input flow state [T] will /// output a new flow state [T].