| PUT | /todos/{Id} | 
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class Todo implements IConvertible
{
    int? id;
    String? text;
    bool? isFinished;
    Todo({this.id,this.text,this.isFinished});
    Todo.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        text = json['text'];
        isFinished = json['isFinished'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'id': id,
        'text': text,
        'isFinished': isFinished
    };
    getTypeName() => "Todo";
    TypeContext? context = _ctx;
}
class UpdateTodo implements IPut, IConvertible
{
    int? id;
    // @Validate(Validator="NotEmpty")
    String? text;
    bool? isFinished;
    UpdateTodo({this.id,this.text,this.isFinished});
    UpdateTodo.fromJson(Map<String, dynamic> json) { fromMap(json); }
    fromMap(Map<String, dynamic> json) {
        id = json['id'];
        text = json['text'];
        isFinished = json['isFinished'];
        return this;
    }
    Map<String, dynamic> toJson() => {
        'id': id,
        'text': text,
        'isFinished': isFinished
    };
    getTypeName() => "UpdateTodo";
    TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'blazor_gallery.servicestack.net', types: <String, TypeInfo> {
    'Todo': TypeInfo(TypeOf.Class, create:() => Todo()),
    'UpdateTodo': TypeInfo(TypeOf.Class, create:() => UpdateTodo()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /todos/{Id} HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/json
Content-Type: application/json
Content-Length: length
{"id":0,"text":"String","isFinished":false}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"id":0,"text":"String","isFinished":false}