android static method
Creates an Android platform with the specified apiLevel and abi.
Implementation
static Platform<AndroidAttributes> android({
required AndroidAPI apiLevel,
required AndroidABI abi,
}) => Platform(
os: OperatingSystem.android,
attributes: AndroidAttributes(apiLevel: apiLevel, abi: abi),
);