mirror of
https://github.com/foss42/apidash.git
synced 2025-08-05 21:10:33 +08:00
Update consts.dart
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
import 'dart:convert';
|
||||
|
||||
enum APIType {
|
||||
rest("HTTP"),
|
||||
graphql("GraphQL");
|
||||
rest("HTTP", "HTTP"),
|
||||
graphql("GraphQL", "GQL");
|
||||
|
||||
const APIType(this.label);
|
||||
const APIType(this.label, this.abbr);
|
||||
final String label;
|
||||
final String abbr;
|
||||
}
|
||||
|
||||
enum HTTPVerb {
|
||||
|
Reference in New Issue
Block a user