getIt static method

Widget getIt(
  1. BuildContext context,
  2. AppModel app,
  3. bool create,
  4. double widgetWidth,
  5. double widgetHeight,
  6. SectionModel sectionModel,
  7. SectionModelCallback sectionModelCallback,
  8. 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,
  );
}