getCustomData method

Map<String, dynamic>? getCustomData()

Fields in the root of the notification format (excluding aps).

Implementation

Map<String, dynamic>? getCustomData() {
  var d = _customData;
  return d == null ? null : Map.from(d);
}