ArchiveOptions.fromJson constructor
ArchiveOptions.fromJson(
- Map map
Implementation
factory ArchiveOptions.fromJson(Map map) {
return ArchiveOptions(
controllerId: map['controller_id'],
maxMessageSizeBytes: map['max_message_size_bytes'],
nodeMaxMemorySizeBytes: map['node_max_memory_size_bytes'],
);
}