build method
Implementation
@override
Widget build(BuildContext context) {
return DraggableScrollableSheet(
expand: expand,
snap: snap,
initialChildSize: initialChildSize,
minChildSize: minChildSize,
maxChildSize: maxChildSize,
snapSizes: snapSizes,
builder: (BuildContext context, ScrollController scrollController) {
return super.builder(context, scrollController);
},
).withPadding(super.adjustToKeyboardChanges ? context.viewInsets : EdgeInsets.zero);
}