ApiWarning constructor

ApiWarning({
  1. String? code,
  2. String? message,
  3. String? region,
})

Implementation

ApiWarning({
  this.code,
  this.message,
  this.region,
});