GoogleResponseList<T> constructor

GoogleResponseList<T>(
  1. String status,
  2. String? errorMessage,
  3. List<T> results
)

Implementation

GoogleResponseList(String status, String? errorMessage, this.results)
    : super(status: status, errorMessage: errorMessage);