Ask Your Question
0

What is the method to verify if a type is generic and nullable in Dart NNBD?

asked 2022-06-02 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-11-24 17:00:00 +0000

woof gravatar image

In Dart NNBD, you can use the Type method isNullable to check if a type is nullable or not. To check if a type is generic, you can use the Type method isGeneric, which returns true if the type is a generic type.

For example, if you want to check if a List type is generic and nullable, you can do the following:

var listType = <int>?[];

if (listType is List && listType.runtimeType.isGeneric && listType.runtimeType.isNullable) {
  print('The variable $listType is a nullable generic List.');
} else {
  print('The variable $listType is not a nullable generic List.');
}

This will output The variable [null] is a nullable generic List. as [null] is a nullable list of integers.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-06-02 11:00:00 +0000

Seen: 9 times

Last updated: Nov 24 '21