|
- // ignore_for_file: public_member_api_docs, sort_constructors_first
- class Result {
- final bool isOk;
- final bool wasDownloaded;
- final String? message;
- final Map? errors;
- final dynamic respons;
- const Result({
- this.isOk = false,
- this.wasDownloaded = false,
- this.message,
- this.errors,
- this.respons,
- });
- }
|