diffSource property
Implementation
@override
dynamic get diffSource {
final T? _value = this.valueOrNull;
if (_value == null) {
return {"id": id, "type": T.toString()};
} else {
return null;
}
}
@override
dynamic get diffSource {
final T? _value = this.valueOrNull;
if (_value == null) {
return {"id": id, "type": T.toString()};
} else {
return null;
}
}