RTDB constructor

RTDB(
  1. User user,
  2. String _baseUrl
)

Constructs an RTDB instance.

  • user: The authenticated Firebase user.
  • _baseUrl: The base URL of the Firebase Realtime Database.

Example:

final rtdb = RTDB(user, 'https://your-database-url.firebaseio.com/');

Implementation

RTDB(this.user, this._baseUrl);