parse static method

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

Implementation

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