Timing.fromJson constructor

Timing.fromJson(
  1. Map json_
)

Implementation

Timing.fromJson(core.Map json_)
    : this(
        total: (json_['total'] as core.num?)?.toDouble(),
      );