customData property

Map? customData

Implementation

Map? get customData {
  if (this.raw != null && this.raw!['customData'] == Map) {
    return this.raw!['customData'];
  }
  return {};
}