toIds static method

Ids? toIds(
  1. dynamic json
)

Convert json to status Ids, or null

Implementation

static Ids? toIds(dynamic json) => json != null ? Ids.fromJson(json) : null;