VolumeUserInfoRentalPeriod.fromJson constructor
VolumeUserInfoRentalPeriod.fromJson(
- Map json_
Implementation
VolumeUserInfoRentalPeriod.fromJson(core.Map json_)
: this(
endUtcSec: json_.containsKey('endUtcSec')
? json_['endUtcSec'] as core.String
: null,
startUtcSec: json_.containsKey('startUtcSec')
? json_['startUtcSec'] as core.String
: null,
);