Skip to content

Instantly share code, notes, and snippets.

@nawalhmw
Created October 24, 2020 13:37
Show Gist options
  • Save nawalhmw/95cf00f60a598017f4612e808baec02b to your computer and use it in GitHub Desktop.
Save nawalhmw/95cf00f60a598017f4612e808baec02b to your computer and use it in GitHub Desktop.
//this code belongs to https://fluttercompletereference.com/
//Chapter 17: HTTP Requests
//******************************************************************************
abstract class HTTPRequest<T> {
Future<T> execute();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment