fromMap static method

NotificationTypeNewMessage? fromMap(
  1. Map<String, dynamic>? _map
)
override

Construct from Map.

Implementation

static NotificationTypeNewMessage? fromMap(Map<String, dynamic>? _map) {
  if (_map == null) return null;
  var _ = _map["@type"];
  if (_ != CONSTRUCTOR) return null;
  var extra = _map['@extra'];
  var clientId = _map['@clientId'];
  var message = Message.fromMap(_map['message'])!;
  var show_preview = _map['show_preview']! as bool;
  return NotificationTypeNewMessage(
    extra: extra,
    clientId: clientId,
    message: message,
    show_preview: show_preview,
  );
}