getWarningAndErrors method
Implementation
@override
EditorWarningAndErrorsEntity getWarningAndErrors(
ID nodeID, BuildContext context) {
final res = label.getWarningAndErrors(nodeID, context);
final res2 = value.getWarningAndErrors(nodeID, context);
return res.copyWith(
errors: res.errors + res2.errors,
warnings: res.warnings + res2.warnings,
);
}