PrimaryNomoButtonThemeData constructor

const PrimaryNomoButtonThemeData({
  1. Color backgroundColor = primaryColor,
  2. Color foregroundColor = Colors.white,
  3. double elevation = 1.0,
  4. BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.circular(8)),
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Implementation

const PrimaryNomoButtonThemeData({
  this.backgroundColor = primaryColor,
  this.foregroundColor = Colors.white,
  this.elevation = 1.0,
  this.borderRadius = const BorderRadius.all(Radius.circular(8)),
  this.padding = const EdgeInsets.all(16),
});