fromJson$Enum$IntentScope function

Enum$IntentScope fromJson$Enum$IntentScope(
  1. String value
)

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;
  }
}