SecondaryNomoButtonThemeData constructor

const SecondaryNomoButtonThemeData({
  1. Color backgroundColor = Colors.white,
  2. Color foregroundColor = const Color(0xAA000000),
  3. double elevation = 0.0,
  4. Color selectionColor = primaryColor,
  5. Border border = const Border.fromBorderSide(BorderSide(color: Color(0xAA000000))),
  6. BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.circular(8)),
  7. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Implementation

const SecondaryNomoButtonThemeData({
  this.backgroundColor = Colors.white,
  this.foregroundColor = const Color(0xAA000000),
  this.elevation = 0.0,
  this.selectionColor = primaryColor,
  this.border =
      const Border.fromBorderSide(BorderSide(color: Color(0xAA000000))),
  this.borderRadius = const BorderRadius.all(Radius.circular(8)),
  this.padding = const EdgeInsets.all(16),
});