Schema constructor

Schema({
  1. Api? api,
  2. Map<String, dynamic>? response,
  3. Map<String, (Map<String, dynamic>, bool)>? responses,
  4. Config? config,
  5. bool isList = false,
  6. bool isMultiResponse = false,
})

Implementation

Schema({
  this.api,
  this.response,
  this.responses,
  this.config,
  this.isList = false,
  this.isMultiResponse = false,
});