DarlightTwoOption constructor

DarlightTwoOption({
  1. Color darkBackGroundColor = const Color(0xff27173a),
  2. Color lightBackGroundColor = Colors.white,
  3. Color darkIconColor = const Color(0xffffc207),
  4. Color lightIconColor = const Color(0xffffbb52),
  5. Color lightBorderColor = const Color(0xffe9ecef),
  6. Color darkBorderColor = Colors.white,
})

Implementation

DarlightTwoOption({
  this.darkBackGroundColor = const Color(0xff27173a), //
  this.lightBackGroundColor = Colors.white, //
  this.darkIconColor = const Color(0xffffc207), //
  this.lightIconColor = const Color(0xffffbb52), //
  this.lightBorderColor = const Color(0xffe9ecef), //
  this.darkBorderColor = Colors.white, //
});