SharedFile constructor

SharedFile({
  1. required String? value,
  2. String? thumbnail,
  3. int? duration,
  4. SharedMediaType type = SharedMediaType.OTHER,
  5. String? mimeType,
  6. String? message,
})

Implementation

SharedFile(
    {required this.value,
    this.thumbnail,
    this.duration,
    this.type = SharedMediaType.OTHER,
    this.mimeType,
    this.message});