Node constructor

Node({
  1. required String id,
  2. required String name,
  3. List<Property> properties = const <Property>[],
  4. String array = "",
  5. bool isConfig = false,
})

Implementation

Node(
    {required this.id,
    required this.name,
    this.properties = const <Property>[],
    this.array = "",
    this.isConfig = false});