destructure method

Map<String, T> destructure()

Destructure ALL keys into a new Map (handles null)

Implementation

Map<String, T> destructure() =>
    this == null ? <String, T>{} : Map<String, T>.from(this!);