toVCard method Null safety
Implementation
List<String> toVCard() {
// NOTE (V3): https://tools.ietf.org/html/rfc2426#section-3.6.2
// NOTE (V4): https://tools.ietf.org/html/rfc6350#section-6.7.2
return ['NOTE:${vCardEncode(note)}'];
}
List<String> toVCard() {
// NOTE (V3): https://tools.ietf.org/html/rfc2426#section-3.6.2
// NOTE (V4): https://tools.ietf.org/html/rfc6350#section-6.7.2
return ['NOTE:${vCardEncode(note)}'];
}