aboutsummaryrefslogtreecommitdiffstats
path: root/lib/data/models/audio.dart
blob: 69df18b41fb9062c6ade0a2fce2bb534f6fcecfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import 'dart:convert';

import 'package:flutter_ics_homescreen/export.dart';

@immutable
class Audio {
  final double volume;
  final double treble;
  final double bass;
  final double rearFront;
  const Audio({
    required this.volume,
    required this.treble,
    required this.bass,
    required this.rearFront,
  });

  const Audio.initial()
      : volume = 5.0,
        treble = 5.0,
        bass = 5.0,
        rearFront = 5.0;
  

  Audio copyWith({
    double? volume,
    double? treble,
    double? bass,
    double? rearFront,
  }) {
    return Audio(
      volume: volume ?? this.volume,
      treble: treble ?? this.treble,
      bass: bass ?? this.bass,
      rearFront: rearFront ?? this.rearFront,
    );
  }

  Map<String, dynamic> toMap() {
    return {
      'volume': volume,
      'treble': treble,
      'bass': bass,
      'rearFront': rearFront,
    };
  }

  factory Audio.fromMap(Map<String, dynamic> map) {
    return Audio(
      volume: map['volume']?.toDouble() ?? 0.0,
      treble: map['treble']?.toDouble() ?? 0.0,
      bass: map['bass']?.toDouble() ?? 0.0,
      rearFront: map['rearFront']?.toDouble() ?? 0.0,
    );
  }

  String toJson() => json.encode(toMap());

  factory Audio.fromJson(String source) => Audio.fromMap(json.decode(source));

  @override
  String toString() {
    return 'Audio(volume: $volume, treble: $treble, bass: $bass, rearFront: $rearFront)';
  }

  @override
  bool operator ==(Object other) {
    if (identical(this, other)) return true;
  
    return other is Audio &&
        other.volume == volume &&
        other.treble == treble &&
        other.bass == bass &&
        other.rearFront == rearFront;
  }

  @override
  int get hashCode {
    return volume.hashCode ^
        treble.hashCode ^
        bass.hashCode ^
        rearFront.hashCode;
  }
}