toPlainText method
A plain text representation of the VCardLabel.
Implementation
String toPlainText() {
final t = type != null ? ';TYPE=${type.toString()}' : '';
return 'LABEL$t:$value';
}
A plain text representation of the VCardLabel.
String toPlainText() {
final t = type != null ? ';TYPE=${type.toString()}' : '';
return 'LABEL$t:$value';
}