$Exponential.fromJson constructor

$Exponential.fromJson(
  1. Map json_
)

Implementation

$Exponential.fromJson(core.Map json_)
  : this(
      growthFactor: (json_['growthFactor'] as core.num?)?.toDouble(),
      numFiniteBuckets: json_['numFiniteBuckets'] as core.int?,
      scale: (json_['scale'] as core.num?)?.toDouble(),
    );