Update consts.dart

This commit is contained in:
Ashita Prasad
2025-01-12 16:39:40 +05:30
parent 67146ba65f
commit 06ad52b933

View File

@ -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 {