Ack.fromJson constructor

Ack.fromJson(
  1. Map json_
)

Implementation

Ack.fromJson(core.Map json_)
  : this(
      ignoreNotFound: json_['ignoreNotFound'] as core.bool?,
      key: json_.containsKey('key') ? json_['key'] as core.List : null,
      queue: json_['queue'] as core.String?,
    );