FullPosit<T, K>.byPosit constructor
FullPosit<T, K>.byPosit ({})
Implementation
factory FullPosit.byPosit(
{required Posit posit,
List<Widget>? actions,
K? params,
Widget? floatingAction,
Bottom? bottom}) {
return FullPosit<T, K>(
fragment: posit.fragmentBuilder(params),
floatingAction: floatingAction,
permissions: posit.params,
title: posit.title,
actions: actions,
bottom: bottom,
key: posit.key);
}