init method

  1. @override
void init()
override

Initialize resources. Called before using the component.

Implementation

@override
void init() {
  _status = HandleStatus.idle;
  // Initialize with empty growable list
  _buffer = [];
  super.init();
}