XRoundedCornerDrawer constructor

const XRoundedCornerDrawer(
  1. {Key key,
  2. String expansionTileTitle,
  3. String expansionTileSubTitle,
  4. @required String userName,
  5. @required String userEmail,
  6. @required String photoUrl,
  7. @required bool emailUpperCase,
  8. Color expansionTileTitleColor,
  9. Color expansionTileSubTitleColor,
  10. List<Widget> expansionchildren,
  11. String progressName,
  12. Color progressColor,
  13. Color progressBackgroundColor,
  14. double progressValue,
  15. Color progressNameColor,
  16. List<Widget> menuChildren,
  17. BorderRadius borderRadius = BorderRadius.zero,
  18. double elevation = 50.0,
  19. List<Widget> bottomMenu}
)

Implementation

const XRoundedCornerDrawer(
    {Key key,
    this.expansionTileTitle,
    this.expansionTileSubTitle,
    @required this.userName,
    @required this.userEmail,
    @required this.photoUrl,
    @required this.emailUpperCase,
    this.expansionTileTitleColor,
    this.expansionTileSubTitleColor,
    this.expansionchildren,
    this.progressName,
    this.progressColor,
    this.progressBackgroundColor,
    this.progressValue,
    this.progressNameColor,
    this.menuChildren,
    this.borderRadius = BorderRadius.zero,
    this.elevation = 50.0,
    this.bottomMenu})
    : super(key: key);