VariableResult constructor

const VariableResult({
  1. required String scope,
  2. required String name,
  3. required dynamic value,
})

Implementation

const VariableResult({
  required this.scope,
  required this.name,
  required this.value,
});