IOSconfig constructor
Constructor checks whether appTeamId
and appBundleId
are provided.
Both arguments are MANDATORY.
Implementation
IOSconfig({
required this.appBundleId,
required this.appTeamId,
}) : assert(
appBundleId != null && appTeamId != null,
'appBundleId and appTeamId cannot be null.',
);