setPlatform method

NotificationBuilder setPlatform(
  1. PlatformType platform
)

Implementation

NotificationBuilder setPlatform(PlatformType platform) {
  if (platform != PlatformType.android && platform != PlatformType.ios) {
    throw ArgumentError("Platform must be either 'android' or 'ios'.");
  }
  _platform = platform;
  return this;
}