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