$PerformanceGoal.fromJson constructor

$PerformanceGoal.fromJson(
  1. Map json_
)

Implementation

$PerformanceGoal.fromJson(core.Map json_)
  : this(
      performanceGoalAmountMicros:
          json_['performanceGoalAmountMicros'] as core.String?,
      performanceGoalPercentageMicros:
          json_['performanceGoalPercentageMicros'] as core.String?,
      performanceGoalString: json_['performanceGoalString'] as core.String?,
      performanceGoalType: json_['performanceGoalType'] as core.String?,
    );