fromJsonNullable static method

InteractivePlusSystemExceptionType? fromJsonNullable(
  1. int? json
)

Implementation

static InteractivePlusSystemExceptionType? fromJsonNullable(int? json) => json == null ? null : fromJson(json);