getIt static method
Widget
getIt(
- BuildContext context,
- AppModel app,
- bool create,
- double widgetWidth,
- double widgetHeight,
- AlbumEntryModel listedItemModel,
- AlbumEntryModelCallback listedItemModelCallback,
- int containerPrivilege,
Implementation
static Widget getIt(
BuildContext context,
AppModel app,
bool create,
double widgetWidth,
double widgetHeight,
AlbumEntryModel listedItemModel,
AlbumEntryModelCallback listedItemModelCallback,
int containerPrivilege) {
var copyOf = listedItemModel.copyWith();
return AlbumEntryModelWidget._(
app: app,
create: create,
widgetWidth: widgetWidth,
widgetHeight: widgetHeight,
listedItemModel: copyOf,
listedItemModelCallback: listedItemModelCallback,
containerPrivilege: containerPrivilege,
);
}