NotificationSoundNone.deserialize constructor

NotificationSoundNone.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory NotificationSoundNone.deserialize(BinaryReader reader) {
  // Construct [NotificationSoundNone] object.
  final returnValue = NotificationSoundNone();

  // Now return the deserialized [NotificationSoundNone].
  return returnValue;
}