toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final matchingState = this.matchingState;
final matchingStateHint = this.matchingStateHint;
final storeCode = this.storeCode;
return {
'matchingState': ?matchingState,
'matchingStateHint': ?matchingStateHint,
'storeCode': ?storeCode,
};
}