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
Hitsu91
2020-09-17 16:32:36 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
88d0cbf0f551ee888a2709a9e5f5ed0213334b3d
88d0cbf0
1 parent
d799dc69
null check on RxList contructor parameter
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/src/state_manager/rx/rx_iterables/rx_list.dart
lib/src/state_manager/rx/rx_iterables/rx_list.dart
View file @
88d0cbf
...
...
@@ -11,7 +11,7 @@ import '../rx_typedefs/rx_typedefs.dart';
/// Create a list similar to `List<T>`
class
RxList
<
E
>
implements
List
<
E
>,
RxInterface
<
List
<
E
>>
{
RxList
([
List
<
E
>
initial
])
{
_list
=
initial
??
[]
;
if
(
initial
!=
null
)
_list
=
initial
;
}
List
<
E
>
_list
=
<
E
>[];
...
...
Please
register
or
login
to post a comment