/* Options: Date: 2025-07-18 00:13:23 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebviewManageHandlerReq.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; import 'dart:collection'; // @Route("/powens/webviewhandler/manage", "POST") class WebviewManageHandlerReq implements IReturn, IConvertible { String? state; WebviewManageHandlerReq({this.state}); WebviewManageHandlerReq.fromJson(Map json) { fromMap(json); } fromMap(Map json) { state = json['state']; return this; } Map toJson() => { 'state': state }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "WebviewManageHandlerReq"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'hcbtas_q_albamfs_api.azurewebsites.net', types: { 'WebviewManageHandlerReq': TypeInfo(TypeOf.Class, create:() => WebviewManageHandlerReq()), });