getIt static method
Widget
getIt(
- BuildContext context,
- AppModel app,
- bool create,
- double widgetWidth,
- double widgetHeight,
- SectionModel sectionModel,
- SectionModelCallback sectionModelCallback,
- int containerPrivilege,
Implementation
static Widget getIt(
BuildContext context,
AppModel app,
bool create,
double widgetWidth,
double widgetHeight,
SectionModel sectionModel,
SectionModelCallback sectionModelCallback,
int containerPrivilege) {
//var copyOf = sectionModel.copyWith();
return SectionModelWidget._(
app: app,
create: create,
widgetWidth: widgetWidth,
widgetHeight: widgetHeight,
//sectionModel: copyOf,
sectionModelCallback: sectionModelCallback,
containerPrivilege: containerPrivilege,
);
}