Supplier constructor

const Supplier({
  1. required bool isSupported,
  2. String? oaid,
  3. String? vaid,
  4. String? aaid,
})

Implementation

const Supplier({
  required this.isSupported,
  this.oaid,
  this.vaid,
  this.aaid,
});