GoogleResponse<T> constructor

GoogleResponse<T>(
  1. String status,
  2. String? errorMessage,
  3. T result
)

Implementation

GoogleResponse(String status, String? errorMessage, this.result)
    : super(status: status, errorMessage: errorMessage);