fromJsonNullable static method

InteractivePlusSystemException? fromJsonNullable(
  1. Map<String, dynamic>? json
)

Implementation

static InteractivePlusSystemException? fromJsonNullable(Map<String,dynamic>? json) => json == null ? null : fromJson(json);