Button constructor

const Button(
  1. String data, {
  2. Key? key,
  3. StyleSheet styleSheet = const StyleSheet(),
})

Implementation

const Button(
  this.data, {
  Key? key,
  this.styleSheet = const StyleSheet(),
}) : super(key: key);