tryFromJson static method

Meta? tryFromJson(
  1. Map<String, dynamic>? json
)
override

Creates an instance of this class from the constructor parameters defined in the json object.

Returns null if json is omitted.

Meta.tryFromJson({ '<parameter>': <value> }, (U) => T);

Implementation

static Meta? tryFromJson(final Map<String, dynamic>? json) =>
    json != null ? Meta.fromJson(json) : null;