LinnerChatWidget constructor

const LinnerChatWidget({
  1. Key? key,
  2. @required List<ChartModel>? charts,
  3. double strokeWidth = 20,
  4. Color backgroundColor = Colors.grey,
})

Implementation

const LinnerChatWidget({
  Key? key,
  @required this.charts,
  this.strokeWidth = 20,
  this.backgroundColor = Colors.grey,
}) : super(key: key);