最佳答案
When I try to implement my protocol this way:
protocol Serialization {
func init(key keyValue: String, jsonValue: String)
}
I get an error saying: Expected identifier in function declaration.
Why am I getting this error?