toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (actorType != null) 'actorType': actorType!,
      if (changeTime != null) 'changeTime': changeTime!,
      if (changes != null)
        'changes': changes!.map((value) => value.toJson()).toList(),
      if (changesFiltered != null) 'changesFiltered': changesFiltered!,
      if (id != null) 'id': id!,
      if (userActorEmail != null) 'userActorEmail': userActorEmail!,
    };