V2TimImage constructor

V2TimImage({
  1. String? uuid,
  2. required int? type,
  3. int? size,
  4. int? width,
  5. int? height,
  6. String? url,
  7. String? localUrl,
})

Implementation

V2TimImage({
  // ignore: non_constant_identifier_names
  this.uuid,
  required this.type,
  this.size,
  this.width,
  this.height,
  this.url,
  this.localUrl,
});