GotrueJsonResponse constructor

const GotrueJsonResponse({
  1. Map<String, dynamic>? data,
  2. GotrueError? error,
  3. int? statusCode,
})

Implementation

const GotrueJsonResponse({
  this.data,
  GotrueError? error,
  int? statusCode,
}) : super(
        error: error,
        statusCode: statusCode,
      );