birthday property

  1. @TagNumber.new(30)
String get birthday

@optional

@description The calendar date of birth of the user, primarily captured for verification workflows.

@example "Mon Jan 02 2006"

@regex .*

@format Must follow the specific string syntax format: Day Month Date Year.

Implementation

@$pb.TagNumber(30)
$core.String get birthday => $_getSZ(13);
  1. @TagNumber.new(30)
set birthday (String value)

Implementation

@$pb.TagNumber(30)
set birthday($core.String value) => $_setString(13, value);