GotrueJsonResponse.fromResponse constructor

GotrueJsonResponse.fromResponse({
  1. required GotrueResponse response,
  2. Map<String, dynamic>? data,
})

Implementation

GotrueJsonResponse.fromResponse({required GotrueResponse response, this.data})
    : super(
        error: response.error,
        statusCode: response.statusCode,
        rawData: response.rawData,
      );