rxInt function

Rx<int> rxInt([
  1. int initial = 0
])

Creates a reactive integer value

Implementation

Rx<int> rxInt([int initial = 0]) => Rx<int>(initial);