CustomVar constructor

CustomVar({
  1. required int index,
  2. required String name,
  3. required String value,
})

Creates a new custom variable.

Implementation

CustomVar({
  required this.index,
  required this.name,
  required this.value,
});