isMapNullOrEmpty property

  1. @useResult
bool get isMapNullOrEmpty

Returns true if this map is null or empty. Audited: 2026-06-12 11:26 EDT

Implementation

@useResult
bool get isMapNullOrEmpty => this?.isEmpty ?? true;