AdaptiveBottomActionSheet constructor
AdaptiveBottomActionSheet(
- TargetPlatform platform
Implementation
factory AdaptiveBottomActionSheet(TargetPlatform platform) {
switch (platform) {
case TargetPlatform.android:
return AndroidBottomActionSheet();
case TargetPlatform.iOS:
return IosBottomActionSheet();
default:
return AndroidBottomActionSheet();
}
}