Node constructor

Node({
  1. required String name,
  2. Map<String, dynamic>? args,
  3. List? cols,
})

Implementation

Node({required this.name, this.args, this.cols});