updated project style guidelines

This commit is contained in:
2024-04-03 19:18:17 +02:00
parent 27618f4404
commit 4c7f53e309
185 changed files with 505 additions and 873 deletions

View File

@ -10,9 +10,7 @@ class SendMessage extends TalkApi {
SendMessage(this.chatToken, SendMessageParams params) : super('v1/chat/$chatToken', params);
@override
assemble(String raw) {
return null;
}
assemble(String raw) => null;
@override
Future<Response>? request(Uri uri, ApiParams? body, Map<String, String>? headers) {
@ -22,4 +20,4 @@ class SendMessage extends TalkApi {
return null;
}
}
}

View File

@ -13,4 +13,4 @@ class SendMessageParams extends ApiParams {
factory SendMessageParams.fromJson(Map<String, dynamic> json) => _$SendMessageParamsFromJson(json);
Map<String, dynamic> toJson() => _$SendMessageParamsToJson(this);
}
}

View File

@ -2,4 +2,4 @@ import '../../../apiResponse.dart';
class SendMessageResponse extends ApiResponse {
}
}