update method

Future<int> update(
  1. Map<String, Object?> values
)

Implementation

Future<int> update(Map<String, Object?> values) {
  return eloquent
      .where(eloquent.getPrimaryColumn, primaryValue)
      .update(values);
}