Untitled
Anonymous
plain_text
06/13/2024 1:46 AM
248 B
26
Indexable
class APIResponse<T> {
final T? data;
final dynamic error;
final bool? success;
final int? statusCode;
APIResponse({this.data, this.error, this.success, this.statusCode});
}
Editor is loading...
Leave a Comment