Remote constructor

Remote({
  1. required String url,
  2. Authentication? auth,
})

Returns a new Remote instance.

Implementation

Remote({
  required this.url,
  this.auth,
});