getDeckWithLimits method

void getDeckWithLimits(
  1. int limit,
  2. ApiResponse apiResponse
)

Implementation

void getDeckWithLimits(int limit, ApiResponse apiResponse) {
  ApiHelper().requestWithServerGet(
    type: clashRoyaleDeckwithLimitApi + limit.toString(),
    apiResponse: apiResponse,
  );
}