isSome method
Returns true if the option is a Some value.
Implementation
@pragma("vm:prefer-inline")
bool isSome() {
return this != null;
}
Returns true if the option is a Some value.
@pragma("vm:prefer-inline")
bool isSome() {
return this != null;
}