http_status 1.0.1 http_status: ^1.0.1 copied to clipboard
Http Status Codes for dart.
example/http_status_example.dart
// Copyright (c) 2017, Era Productions. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
import 'package:http_status/http_status.dart';
main() {
print('${HttpStatusCode.OK}');
print('${HttpStatus.OK}');
}