isNotMapNullOrEmpty property

  1. @useResult
bool get isNotMapNullOrEmpty

Returns true if this map is not null and not empty.

Implementation

@useResult
bool get isNotMapNullOrEmpty => this?.isNotEmpty ?? false;