automock 1.4.0 copy "automock: ^1.4.0" to clipboard
automock: ^1.4.0 copied to clipboard

An automatic mock server to speed up your initial development.

example/main.dart

import 'dart:io';
import 'package:automock/automock.dart';

Future<dynamic> main() async {
  final File file = File('example/swagger.json');
  final String swagger = await file.readAsString();

  final Automock automock = Automock(
    port: 8080,
    swaggerJson: swagger,
  );
  await automock.start();
}
2
likes
150
points
16
downloads

Publisher

verified publishermauriciotogneri.com

Weekly Downloads

An automatic mock server to speed up your initial development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

json_annotation, mockserver

More

Packages that depend on automock