laravel_exception 0.0.2-beta laravel_exception: ^0.0.2-beta copied to clipboard
parse laravel exception message to dart class with geters to make it simpler
example/laravel_exception_example.dart
import 'package:laravel_exception/laravel_exception.dart';
void main(List<String> args) {
// if (statusCode == HttpStatus.unprocessableEntity) {
final data = <String, dynamic>{};
throw LaravelException.parse(data);
// }
}