Untitled
unknown
plain_text
2 years ago
185 B
12
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