DataMatchResultField constructor

DataMatchResultField(
  1. Map<String, dynamic> nativeDataMatchResultField
)

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"],
  );
}