addSlideables method
Implementation
Widget addSlideables(List<SlidableAction> actions, {extentRatio = 0.25}) {
return Slidable(
endActionPane: ActionPane(
motion: ScrollMotion(),
extentRatio: extentRatio,
children: actions,
),
child: this,
);
}