const
InstagramImagePicker(- Map<String, String> _accessMap,
- {Key? key,
- String appBarTitle = 'Pick Instagram Image',
- TextStyle? appBarTextStyle,
- Color? appBarColor,
- String doneBtnText = 'Done',
- TextStyle? doneBtnTextStyle,
- required dynamic onDone(
- List<Photo>
),
- String cancelBtnText = 'Cancel',
- TextStyle? cancelBtnTextStyle,
- required Function onCancel,
- bool showLogoutButton = false}
)
Implementation
const InstagramImagePicker(
this._accessMap, {
super.key,
this.appBarTitle = 'Pick Instagram Image',
this.appBarTextStyle,
this.appBarColor,
this.doneBtnText = 'Done',
this.doneBtnTextStyle,
required this.onDone,
this.cancelBtnText = 'Cancel',
this.cancelBtnTextStyle,
required this.onCancel,
this.showLogoutButton = false,
});