tryFromJson static method
Creates an instance of this class from the constructor parameters defined in the json
object.
Returns null if json is omitted.
JsonRpcHttpHeaders.tryFromJson({ '<parameter>': <value> });
Implementation
static JsonRpcHttpHeaders? tryFromJson(final Map<String, dynamic>? json) {
return utils.tryParse(json, JsonRpcHttpHeaders.fromJson);
}