Step 1: Get Token
Generate the firebase token from your terminal using the command $ firebase login:ci
Waiting for authentication...
✔ Success! Use this token to login on a CI server:
1/VXXXXXXX--YOUR-FIREBASE-CI-TOKEN--XXXXXh92o
import 'dart:collection'; | |
import 'dart:math'; | |
class IndexableSkipList<K, V> { | |
static const _maxHeight = 12; | |
final _Node<K, V> _head = _Node( | |
null, | |
null, | |
List.filled(_maxHeight, null), |