lengthOrEmpty property

int? lengthOrEmpty

Implementation

int? get lengthOrEmpty => _length is Future<int> ? 0 : _length as int?;