CallLinkViewStyle constructor

const CallLinkViewStyle({
  1. Decoration decoration = const BoxDecoration(color: Color(0xffD0D8EB)),
  2. TextStyle textStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.black, fontSize: 12),
  3. Color iconColor = const Color(0xff97A5C7),
})

Implementation

const CallLinkViewStyle({
  this.decoration = const BoxDecoration(
    color: Color(0xffD0D8EB),
  ),
  this.textStyle = const TextStyle(
      fontWeight: FontWeight.normal, color: Colors.black, fontSize: 12),
  this.iconColor = const Color(0xff97A5C7),
});