SessionLogFilter.fromJson constructor

SessionLogFilter.fromJson(
  1. Map<String, dynamic> jsonSerialization
)

Implementation

factory SessionLogFilter.fromJson(Map<String, dynamic> jsonSerialization) {
  return SessionLogFilter(
    endpoint: jsonSerialization['endpoint'] as String?,
    method: jsonSerialization['method'] as String?,
    futureCall: jsonSerialization['futureCall'] as String?,
    slow: jsonSerialization['slow'] as bool,
    error: jsonSerialization['error'] as bool,
    open: jsonSerialization['open'] as bool,
    lastSessionLogId: jsonSerialization['lastSessionLogId'] as int?,
  );
}