Ack.fromJson constructor
Ack.fromJson(
- 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?,
);