bool isFieldsChanged(List<String> name) { var result = true; for (var d in name) { if (!result || !isFieldChanged(d)) { break; } } return result; }