Skip to content

Instantly share code, notes, and snippets.

@ookami-kb
Created June 15, 2020 18:56
Show Gist options
  • Save ookami-kb/e2bae6fdbc2776ed1e9d022c133e9800 to your computer and use it in GitHub Desktop.
Save ookami-kb/e2bae6fdbc2776ed1e9d022c133e9800 to your computer and use it in GitHub Desktop.
@RestApi()
abstract class RestClient {
factory RestClient(Dio dio) = _RestClient;
@POST('/api/general/v1/users/signOut')
Future<EmptyResponse> signOut(@Body() SignOutRequest request);
}
@JsonSerializable()
class EmptyResponse { … }
@JsonSerializable()
class SignOutRequest { … }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment