/* Options: Date: 2025-05-12 19:03:19 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ViewLogs.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; // @Route("/logs") class ViewLogs implements IReturn, IConvertible, IPost { bool? clear; ViewLogs({this.clear}); ViewLogs.fromJson(Map json) { fromMap(json); } fromMap(Map json) { clear = json['clear']; return this; } Map toJson() => { 'clear': clear }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "ViewLogs"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test.servicestack.net', types: { 'ViewLogs': TypeInfo(TypeOf.Class, create:() => ViewLogs()), });