createMock<T> static method
Create a mock reactive value for testing
Implementation
static Rx<T> createMock<T>(T initialValue) {
return Rx<T>(initialValue);
}
Create a mock reactive value for testing
static Rx<T> createMock<T>(T initialValue) {
return Rx<T>(initialValue);
}