encode static method

Map<String, dynamic> encode(
  1. RegistrationSuccess value
)

Implementation

static Map<String, dynamic> encode(RegistrationSuccess value) {
	Map<String, dynamic> entityAsMap = {
		"groupId" : value.groupId,
		"userId" : value.userId,
		"token" : value.token
	};
	return entityAsMap;
}