ReceiveBVP.fromMap constructor
ReceiveBVP.fromMap(
- Map map
Implementation
factory ReceiveBVP.fromMap(Map<dynamic, dynamic> map) {
final double timestamp = map['timestamp'];
final double bvp = map['bvp'];
return ReceiveBVP(timestamp, bvp);
}