RxGoController<T> constructor

RxGoController<T>({
  1. String? name,
  2. Future<T?>? future,
})

Implementation

RxGoController({
  String? name,
  Future<T?>? future,
})  : _name = name != null ? "/go-sheet-$name" : "/${const Uuid().v4()}",
      _future = future;