UIImage constructor

UIImage({
  1. String? name,
  2. String? systemName,
  3. Uint8List? data,
})

Implementation

UIImage({this.name, this.systemName, this.data}) {
  assert(this.name != null || this.systemName != null || this.data != null);
}