NodesResponse constructor

NodesResponse({
  1. String? name,
  2. String? role,
  3. DateTime? lastModified,
  4. String? thumbnailUrl,
  5. String? err,
  6. Map<String, FileResponse>? nodes,
})

Implementation

NodesResponse({
  this.name,
  this.role,
  this.lastModified,
  this.thumbnailUrl,
  this.err,
  this.nodes,
});