create method

Future<String?> create({
  1. required String url,
  2. double? width,
  3. double? height,
  4. String? allow,
  5. String? sandbox,
  6. String? referrerPolicy,
  7. String? loading,
})

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.');
}