messageTextStyle static method

TextStyle messageTextStyle(
  1. bool isSelf
)

Implementation

static TextStyle messageTextStyle(bool isSelf) {
  return TextStyle(

    /// Will not use the `isSelf` to change the color right now.
    color: selfTextMsgColor,
    fontSize: 16.0.px,
    fontWeight: FontWeight.w400,

    /// Will not center look like.
    height: 22.px / 16.0.px,
  );
}