parse static method

Sentinel? parse(
  1. Map<String, dynamic>? json
)
override

Implementation

static Sentinel? parse(Map<String, dynamic>? json) =>
    json == null ? null : Sentinel._fromJson(json);