ByteMatchSet.fromJson constructor
Implementation
factory ByteMatchSet.fromJson(Map<String, dynamic> json) {
return ByteMatchSet(
byteMatchSetId: json['ByteMatchSetId'] as String,
byteMatchTuples: (json['ByteMatchTuples'] as List)
.whereNotNull()
.map((e) => ByteMatchTuple.fromJson(e as Map<String, dynamic>))
.toList(),
name: json['Name'] as String?,
);
}