UXPWebViewCard constructor

UXPWebViewCard({
  1. Key? key,
  2. required String? name,
  3. required String type,
  4. String? id,
  5. Map? props,
})

Implementation

UXPWebViewCard({
  Key? key,
  required this.name,
  required this.type,
  this.id,
  this.props,
}) : super(key: key);