RestApi constructor

const RestApi({
  1. String? baseUrl,
  2. bool? autoCastResponse,
  3. Parser serializer = Parser.MapSerializable,
  4. Parser deserializer = Parser.MapSerializable,
  5. bool compute = false,
})

Implementation

const RestApi({
  this.baseUrl,
  this.autoCastResponse,
  this.serializer = Parser.MapSerializable,
  this.deserializer = Parser.MapSerializable,
  this.compute = false
});