mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-24 04:59:36 -06:00
11 lines
262 B
Dart
11 lines
262 B
Dart
part of 'responses.dart';
|
|
|
|
class EmptyResponse extends PhylumApiSuccessResponse {
|
|
const EmptyResponse();
|
|
|
|
factory EmptyResponse.fromResponse(Map<String, dynamic> data) => const EmptyResponse();
|
|
|
|
@override
|
|
Future process(PhylumAccount account) async {}
|
|
}
|