fromJson$Enum$IntentScope function
Implementation
Enum$IntentScope fromJson$Enum$IntentScope(String value) {
switch (value) {
case r'TRANSACTION_DATA':
return Enum$IntentScope.TRANSACTION_DATA;
case r'PERSONAL_MESSAGE':
return Enum$IntentScope.PERSONAL_MESSAGE;
default:
return Enum$IntentScope.$unknown;
}
}