setYearOfBirth static method

Future<void> setYearOfBirth(
  1. int year
)

Set the year of DOB of the user

Appier.setYearOfBirth(1992)

Implementation

static Future<void> setYearOfBirth(int year) async {
  await AppierFlutterPlatform.instance.setYearOfBirth(year);
}