mirror of
https://github.com/foss42/apidash.git
synced 2025-12-03 03:17:00 +08:00
Add graphql enum
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
|
|
||||||
enum APIType {
|
enum APIType {
|
||||||
rest("HTTP");
|
rest("HTTP"),
|
||||||
|
graphql("GraphQL");
|
||||||
|
|
||||||
const APIType(this.label);
|
const APIType(this.label);
|
||||||
final String label;
|
final String label;
|
||||||
|
|||||||
Reference in New Issue
Block a user