setMonthOfBirth static method

Future<void> setMonthOfBirth(
  1. int month
)

Set the month of DOB of the user

AppierFlutter.setMonthOfBirth(7)

Implementation

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