ActionPanel constructor

const ActionPanel({
  1. Key? key,
  2. required List<Widget> children,
  3. bool isBusy = false,
})

Implementation

const ActionPanel({
  Key? key,
  required this.children,
  this.isBusy = false,
}) : super(key: key);