MessageContainer constructor

const MessageContainer({
  1. Key? key,
  2. String message = '',
  3. TextStyle style = const TextStyle(fontSize: 12.0, color: Colors.black),
})

Implementation

const MessageContainer(
    {Key? key,
    this.message = '',
    this.style = const TextStyle(
      fontSize: 12.0,
      color: Colors.black,
    )})
    : super(key: key);