fromJSON static method
Implementation
static TopicRole fromJSON(String data) {
switch (data) {
case "PARTICIPANT":
return TopicRole.participant;
case "ADMIN":
return TopicRole.admin;
case "OWNER":
return TopicRole.owner;
default:
throw ArgumentError('Invalid TopicRole entry value $data');
}
}