getData method

Map<String, String>? getData()

Gets sub-fields of the android.data field.

Returns A map with sub-fields of the android.data field, or null if absent.

Implementation

Map<String, String>? getData() {
  var d = _data;
  return d == null ? null : Map.from(d);
}