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:28:43 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d799dc698d82a9c6c5353f881d623471f314f545
d799dc69
1 parent
5c319946
RxList initialize with empty list as default value if not provided
Hide 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 @
d799dc6
...
...
@@ -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
;
_list
=
initial
??
[]
;
}
List
<
E
>
_list
=
<
E
>[];
...
...
Please
register
or
login
to post a comment