RemoteDto constructor

RemoteDto({
  1. required String url,
  2. RemoteAuthenticationDto? auth,
})

Returns a new RemoteDto instance.

Implementation

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