TargetConfiguration.fromJson constructor

TargetConfiguration.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory TargetConfiguration.fromJson(Map<String, dynamic> json) {
  return TargetConfiguration(
    targetValue: json['TargetValue'] as double,
  );
}