metadataJson property

Map<String, dynamic> get metadataJson

Implementation

Map<String, dynamic> get metadataJson => {
      if (feature != null) 'feature': feature,
      if (tags.isNotEmpty) 'tags': tags,
      if (description != null) 'description': description,
      if (owner != null) 'owner': owner,
      if (priority != null) 'priority': priority,
    };