JsonValueNull.fromJson constructor

JsonValueNull.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory JsonValueNull.fromJson(Map<String, dynamic> json) => JsonValueNull(
      extra: json['@extra'],
      clientId: json['@client_id'],
    );