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