VariableSchema constructor

const VariableSchema({
  1. required String name,
  2. required String type,
  3. required String fallbackValue,
})

Implementation

const VariableSchema({
  required this.name,
  required this.type,
  required this.fallbackValue,
});