ReceiveBVP.fromMap constructor

ReceiveBVP.fromMap(
  1. Map map
)

Implementation

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