/* Options: Date: 2025-09-07 09:48:29 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Gravatar.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Gravatar", "GET") // @Route("/Gravatar/{Id}", "GET") class Gravatar implements IConvertible, IGet { String? id; int? size; Gravatar({this.id,this.size}); Gravatar.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; size = json['size']; return this; } Map toJson() => { 'id': id, 'size': size }; getTypeName() => "Gravatar"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'Gravatar': TypeInfo(TypeOf.Class, create:() => Gravatar()), });