TestInt.fromJson constructor

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

Parse from a json

Implementation

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