create method
Creates an iframe with the specified URL and properties.
Implementation
Future<String?> create({
required String url,
double? width,
double? height,
String? allow,
String? sandbox,
String? referrerPolicy,
String? loading,
}) {
throw UnimplementedError('create() has not been implemented.');
}