Untitled

 avatar
unknown
plain_text
a year ago
185 B
6
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