toMap method

  1. @override
Map<String, Object?> toMap()
override

Implementation

@override
Map<String, Object?> toMap() {
  final data = <String, Object?>{
    'percentProgress': percentProgress,
  };
  data.removeWhere((key, value) => value == null);
  return data;
}