CallUserTileStyle constructor

const CallUserTileStyle({
  1. BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.circular(16.6)),
  2. Color backgroundColor = const Color(0xff0D2852),
  3. int profileImageSize = 50,
  4. TextStyle nameTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.white, fontSize: 14),
  5. ActionButtonStyle muteActionStyle = const ActionButtonStyle(activeBgColor: Color(0x00000080), activeIconColor: Colors.white),
  6. ActionButtonStyle speakingIndicatorStyle = const ActionButtonStyle(activeBgColor: Color(0xff3ABF87), activeIconColor: Colors.white),
  7. TextStyle callStatusTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
})

Implementation

const CallUserTileStyle({
  this.borderRadius = const BorderRadius.all(Radius.circular(16.6)),
  this.backgroundColor = const Color(0xff0D2852),
  this.profileImageSize = 50,
  this.nameTextStyle = const TextStyle(
      fontWeight: FontWeight.normal, color: Colors.white, fontSize: 14),
  this.muteActionStyle = const ActionButtonStyle(
      activeBgColor: Color(0x00000080), activeIconColor: Colors.white),
  this.speakingIndicatorStyle = const ActionButtonStyle(
      activeBgColor: Color(0xff3ABF87), activeIconColor: Colors.white),
  this.callStatusTextStyle = const TextStyle(
      fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
});