RotationRulesType.fromJson constructor

RotationRulesType.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RotationRulesType.fromJson(Map<String, dynamic> json) {
  return RotationRulesType(
    automaticallyAfterDays: json['AutomaticallyAfterDays'] as int?,
  );
}