setUserDateOfBirth static method

Future<void> setUserDateOfBirth(
  1. DateTime birthday
)

Set the user's date of birth to the user profile.

Implementation

static Future<void> setUserDateOfBirth(final DateTime birthday) async {
  await _invokeMethod('setUserDateOfBirth', birthday.millisecondsSinceEpoch);
}