fromJSON static method

TopicRole fromJSON(
  1. String data
)

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