/* Options: Date: 2026-01-27 18:43:05 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetStarted.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetStartedResponse implements IConvertible { GetStartedResponse(); GetStartedResponse.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "GetStartedResponse"; TypeContext? context = _ctx; } // @Route("/started") class GetStarted implements IReturn, IConvertible, IGet { GetStarted(); GetStarted.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GetStartedResponse(); getResponseTypeName() => "GetStartedResponse"; getTypeName() => "GetStarted"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'buildmax.org', types: { 'GetStartedResponse': TypeInfo(TypeOf.Class, create:() => GetStartedResponse()), 'GetStarted': TypeInfo(TypeOf.Class, create:() => GetStarted()), });