cardUserAvatar property

String? get cardUserAvatar

Implementation

String? get cardUserAvatar {
  if (bodyType == MessageType.CUSTOM) {
    final customBody = body as CustomMessageBody;
    if (customBody.event == cardMessageKey) {
      return customBody.params?[cardAvatarKey];
    }
  }
  return null;
}