VariableRef constructor

VariableRef({
  1. required String name,
  2. required VariableScope scope,
  3. required TinkVariableType type,
  4. required String differentiator,
  5. String? screenId,
})

Implementation

VariableRef({
  required this.name,
  required this.scope,
  required this.type,
  required this.differentiator,
  this.screenId,
});