TestVectorInt.fromJson constructor

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

Parse from a json

Implementation

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