Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Rafa Ruiz
2021-03-29 02:12:54 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5f06e1f8212f83e7e9c5c855ec822488e0ca795e
5f06e1f8
1 parent
26c3569a
Fix initial nullables
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
lib/get_rx/src/rx_types/rx_core/rx_num.dart
lib/get_rx/src/rx_types/rx_core/rx_impl.dart
View file @
5f06e1f
...
...
@@ -247,7 +247,7 @@ class RxBool extends Rx<bool> {
}
class
RxnBool
extends
Rx
<
bool
?>
{
RxnBool
(
bool
initial
)
:
super
(
initial
);
RxnBool
(
bool
?
initial
)
:
super
(
initial
);
@override
String
toString
()
{
return
"
$value
"
;
...
...
lib/get_rx/src/rx_types/rx_core/rx_num.dart
View file @
5f06e1f
...
...
@@ -578,7 +578,7 @@ class RxNum extends Rx<num> {
}
class
RxnNum
extends
Rx
<
num
?>
{
RxnNum
(
num
initial
)
:
super
(
initial
);
RxnNum
(
num
?
initial
)
:
super
(
initial
);
num
?
operator
+(
num
other
)
{
if
(
value
!=
null
)
{
...
...
Please
register
or
login
to post a comment