updateOr method

T? updateOr([
  1. T? defaultValue
])

Returns the data value, if isUpdate, otherwise defaultValue.

Implementation

T? updateOr([T? defaultValue]) => data ?? defaultValue;