structSyncInto method

void structSyncInto(
  1. T temp,
  2. P p,
  3. String key
)

Syncs Dart-side fields into the already-allocated native pointer p. Defaults to structWriteInto.

Implementation

void structSyncInto(T temp, P p, String key) => structWriteInto(p);