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