toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (appInitialActivity != null)
        'appInitialActivity': appInitialActivity!,
      if (bootstrapPackageId != null)
        'bootstrapPackageId': bootstrapPackageId!,
      if (bootstrapRunnerClass != null)
        'bootstrapRunnerClass': bootstrapRunnerClass!,
      if (maxDepth != null) 'maxDepth': maxDepth!,
      if (maxSteps != null) 'maxSteps': maxSteps!,
    };