getPlatformPhotoWidget method
Widget
getPlatformPhotoWidget({
- Key? key,
- required BuildContext context,
- required AppModel app,
- String? defaultImage,
- required MediumAvailable feedbackFunction,
- required PlatformMediumModel? initialImage,
- bool? allowCrop,
override
Implementation
@override
Widget getPlatformPhotoWidget(
{Key? key,
required BuildContext context,
required AppModel app,
String?
defaultImage, // asset location of default image which the user can choose
required MediumAvailable feedbackFunction,
required PlatformMediumModel? initialImage,
bool? allowCrop}) =>
PlatformPhotoWidget(
key: key,
app: app,
defaultImage: defaultImage,
feedbackFunction: feedbackFunction,
initialImage: initialImage,
allowCrop: allowCrop,
);