NkResponse<T> constructor

NkResponse<T>({
  1. bool? success,
  2. int? quantity,
  3. T? data,
  4. List<ErrorData>? errorData,
  5. int? id,
})

Implementation

NkResponse({this.success, this.quantity, this.data, this.errorData, this.id});