MeetBottomSheetStyle constructor

const MeetBottomSheetStyle({
  1. TextStyle titleStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
  2. TextStyle subTitleTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
  3. Decoration meetLinkDecoration = const BoxDecoration(color: Color(0xffF2F2F2), borderRadius: BorderRadius.all(Radius.circular(6))),
  4. Color copyIconColor = const Color(0xff575757),
  5. TextStyle meetLinkTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Color(0xff6580CB), fontSize: 12),
  6. ScheduleMeetToggleStyle scheduleMeetToggleStyle = const ScheduleMeetToggleStyle(),
  7. ButtonStyle? joinMeetingButtonStyle = const ButtonStyle(),
})

Implementation

const MeetBottomSheetStyle({
  this.titleStyle = const TextStyle(
      fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
  this.subTitleTextStyle = const TextStyle(
      fontWeight: FontWeight.normal, color: Color(0xff767676), fontSize: 12),
  this.meetLinkDecoration = const BoxDecoration(
      color: Color(0xffF2F2F2),
      borderRadius: BorderRadius.all(
        Radius.circular(6),
      )),
  this.copyIconColor = const Color(0xff575757),
  this.meetLinkTextStyle = const TextStyle(
      fontWeight: FontWeight.normal, color: Color(0xff6580CB), fontSize: 12),
  this.scheduleMeetToggleStyle = const ScheduleMeetToggleStyle(),
  this.joinMeetingButtonStyle = const ButtonStyle(),
});