ActionStyle.dark constructor

const ActionStyle.dark({
  1. EdgeInsetsGeometry? padding = const EdgeInsets.all(4),
  2. Color? backgroundColor = const Color(0xff3f4042),
  3. BorderRadius? borderRadius = const BorderRadius.all(Radius.circular(4)),
  4. Border? border,
  5. Color? disableColor = Colors.grey,
  6. Color? selectColor = const Color(0xff3f4042),
})

Implementation

const ActionStyle.dark({
  this.padding = const EdgeInsets.all(4),
  this.backgroundColor = const Color(0xff3f4042),
  this.borderRadius = const BorderRadius.all(Radius.circular(4)),
  this.border,
  this.disableColor = Colors.grey,
  this.selectColor = const Color(0xff3f4042),
});