VariableInfo constructor

VariableInfo({
  1. required String name,
  2. required String type,
  3. required String details,
})

Implementation

VariableInfo({
  required this.name,
  required this.type,
  required this.details,
});