bind method

  1. @override
void bind()
override

Binds the source to the target.

Implementation

@override
void bind() {
  target.value = source.value;
  source.addListener(_listener);
}