ButtonStable constructor

const ButtonStable({
  1. Key? key,
  2. Icon icon = const Icon(Icons.abc_rounded),
  3. dynamic callback(
    1. dynamic data
    )?,
})

Implementation

const ButtonStable({
  Key? key,
  this.icon = const Icon(Icons.abc_rounded),
  this.callback,
}) : super(key: key);