toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fixedLikelihood = this.fixedLikelihood;
  final relativeLikelihood = this.relativeLikelihood;
  return {
    'fixedLikelihood': ?fixedLikelihood,
    'relativeLikelihood': ?relativeLikelihood,
  };
}