removeFields method

Record removeFields(
  1. List<String> excludeFields
)

Implementation

Record removeFields(List<String> excludeFields) {
  excludeFields.forEach((fieldName) {
    _fields.remove(fieldName);
  });
  return this;
}