firstTwoNames property

String firstTwoNames

Implementation

String get firstTwoNames {
  final nomes = split(' ');
  return EsigUtils.textoSeparado(
      nomes.getNullable(0), nomes.getNullable(1), ' ');
}