starwork_flutter/lib/common/constant/http_constant.dart

8 lines
200 B
Dart

class HttpConstant {
static const String post="POST";
static const String get="GET";
static const String put="PUT";
static const String delete="DELETE";
static const String patch="PATCH";
}