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