toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'flutter_path': flutterPath,
    'upload_options': uploadOptions.toMap(),
    'qr_code': qrCode.toMap(),
    'pipeline_steps': pipelineSteps?.map((step) => step.toMap()).toList(),
  };
}