TestVectorString.fromJson constructor

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

Parse from a json

Implementation

factory TestVectorString.fromJson(Map<String, dynamic> json) =>
    TestVectorString(
      value: List<String>.from(
          (json['value'] ?? []).map((item) => item).toList()),
      extra: json['@extra'],
      clientId: json['@client_id'],
    );