PickerFriendRequestParams constructor

PickerFriendRequestParams(
  1. {String? title,
  2. bool? enableSearch = DefaultValues.enableSearch,
  3. bool? showMyProfile = DefaultValues.showMyProfile,
  4. bool? showFavorite = DefaultValues.showFavorite,
  5. bool? showPickedFriend = DefaultValues.showPickedFriend,
  6. int? maxPickableCount = DefaultValues.maxPickableCount,
  7. int? minPickableCount = DefaultValues.minPickableCount,
  8. String? returnUrl,
  9. bool? enableBackButton = DefaultValues.enableBackButton}
)

Implementation

PickerFriendRequestParams({
  this.title,
  this.enableSearch = DefaultValues.enableSearch,
  this.showMyProfile = DefaultValues.showMyProfile,
  this.showFavorite = DefaultValues.showFavorite,
  this.showPickedFriend = DefaultValues.showPickedFriend,
  this.maxPickableCount = DefaultValues.maxPickableCount,
  this.minPickableCount = DefaultValues.minPickableCount,
  this.returnUrl,
  this.enableBackButton = DefaultValues.enableBackButton,
});