ResolutionJsonBean constructor

ResolutionJsonBean({
  1. bool? default$,
  2. String? description,
  3. String? iconUrl,
  4. String? id,
  5. String? name,
  6. String? self,
})

Implementation

ResolutionJsonBean(
    {bool? default$,
    this.description,
    this.iconUrl,
    this.id,
    this.name,
    this.self})
    : default$ = default$ ?? false;