ErrorBudget.fromJson constructor

ErrorBudget.fromJson(
  1. Map json_
)

Implementation

ErrorBudget.fromJson(core.Map json_)
  : this(
      allowedCount: json_['allowedCount'] as core.int?,
      allowedPercentage: json_['allowedPercentage'] as core.int?,
    );