toJson method

Map<String, dynamic> toJson()

Converts a PassportElementError to a Map for JSON encoding.

Implementation

Map<String, dynamic> toJson() {
  return {
    'source': source,
    'type': type.value,
  }..removeWhere(_nullFilter);
}