DataMatchResultField constructor
Represents the state of the field in the data match.
Implementation
DataMatchResultField(Map<String, dynamic> nativeDataMatchResultField) {
field = enumFromValue(
DataMatchField.values,
nativeDataMatchResultField["field"],
);
state = enumFromValue(
DataMatchState.values,
nativeDataMatchResultField["state"],
);
}