TableUpdate.raw constructor

const TableUpdate.raw(
  1. String action,
  2. Map<String, dynamic> body
)

An update expressed as a raw JSON map, for actions without a dedicated subclass. The action key is added automatically.

Implementation

const factory TableUpdate.raw(String action, Map<String, dynamic> body) =
    RawTableUpdate;