ConectarSettings constructor

ConectarSettings({
  1. Color primaryColor = const Color(0xff1bb17a),
  2. Color backgroundColor = const Color(0xFFfafafa),
  3. Color successColor = const Color(0xFF4CAF50),
  4. Color textColor = const Color(0xFF000000),
  5. Color borderColor = const Color(0xFFDEE2E6),
  6. double cardRadius = 6,
  7. double paddingDefault = 16,
})

Implementation

ConectarSettings({
  this.primaryColor = const Color(0xff1bb17a),
  this.backgroundColor = const Color(0xFFfafafa),
  this.successColor = const Color(0xFF4CAF50),
  this.textColor = const Color(0xFF000000),
  this.borderColor = const Color(0xFFDEE2E6),
  this.cardRadius = 6,
  this.paddingDefault = 16,
});